/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #1a5490;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual img {
    display: none;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    max-width: 800px;
    opacity: 0.95;
}

.update-date {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #fff;
    color: #1a5490;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #1a5490;
}

.btn-text {
    background: none;
    color: #666;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #333;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

/* Content Columns */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.column-text,
.column-visual {
    width: 100%;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
}

.statistics-section h2 {
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Service Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #1a5490;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1a5490;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #1a5490;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.benefit-content {
    flex: 1;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author strong {
    display: block;
    color: #1a5490;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-marker {
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.industry-item img {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #1a5490;
}

.faq-icon {
    font-size: 1.5rem;
    color: #1a5490;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e5e5e5;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h3 {
    margin: 0;
    font-size: 1.125rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

/* Services Page */
.service-full {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
}

.service-title h2 {
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: #666;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
}

.service-description p {
    margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-box {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.benefit-box h3 {
    color: #1a5490;
    margin-bottom: 0.75rem;
}

/* Process Columns */
.process-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-column {
    flex: 1;
    min-width: 250px;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.comparison-row {
    display: flex;
    gap: 1rem;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    background-color: #fff;
    border-radius: 4px;
}

.comparison-header .comparison-cell {
    font-weight: 700;
    background-color: #1a5490;
    color: #fff;
}

.comparison-label {
    font-weight: 600;
    color: #1a5490;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.contact-detail {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a5490;
    margin: 1rem 0;
}

/* Company Info */
.company-details {
    max-width: 600px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.detail-label {
    font-weight: 600;
    color: #333;
}

.detail-value {
    color: #666;
}

/* Expectations Grid */
.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expectation-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: #fff;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.125rem;
    margin-top: 1rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-box {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.step-box .step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.content-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5490;
    margin: 1.5rem 0;
}

/* About Page */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.member-role {
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.member-bio {
    font-size: 0.95rem;
    color: #666;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-left: 2px solid #e5e5e5;
    padding-left: 2rem;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section strong {
    color: #1a5490;
}

/* Cookie Table */
.cookie-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.cookie-row {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.cookie-row > div {
    flex: 1;
    min-width: 100px;
}

.cookie-header {
    font-weight: 700;
    background-color: #1a5490;
    color: #fff;
}

/* Commitment List */
.commitment-list {
    list-style: none;
    margin: 1.5rem 0;
}

.commitment-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .main-nav li {
        border-bottom: 1px solid #e5e5e5;
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-content {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #e5e5e5;
        padding-top: 1rem;
    }

    .comparison-row {
        flex-direction: column;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-row {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .feature-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1;
        min-width: 280px;
    }

    .content-columns {
        flex-direction: row;
    }

    .column-text,
    .column-visual {
        flex: 1;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 300px;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .service-price {
        align-items: flex-end;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-visual {
        display: block;
    }
}