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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #2c5f7d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d4f;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
    text-decoration: none;
}

.logo:hover {
    color: #1a3d4f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5f7d;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5f7d;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-small {
    padding: 3rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content.centered {
    text-align: center;
}

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

.hero-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.section-alt {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a3d4f;
}

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

.btn-primary {
    background-color: #2c5f7d;
    color: #fff;
    border-color: #2c5f7d;
}

.btn-primary:hover {
    background-color: #1a3d4f;
    border-color: #1a3d4f;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f7d;
    border-color: #2c5f7d;
}

.btn-secondary:hover {
    background-color: #2c5f7d;
    color: #fff;
}

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

.btn-text:hover {
    color: #2c5f7d;
}

/* Feature Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Content Split */
.content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.content-text,
.content-visual {
    flex: 1 1 400px;
}

.content-text h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.content-text p {
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.content-visual svg {
    width: 100%;
    height: auto;
}

/* Services */
.services-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item {
    flex: 1 1 calc(33.333% - 1rem);
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #2c5f7d;
    border-radius: 4px;
}

.service-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.service-item p {
    color: #666;
    font-size: 0.9375rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-weight: 700;
    color: #2c5f7d;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

/* Values and Benefits */
.values-list,
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item,
.benefit-item {
    flex: 1 1 calc(50% - 1rem);
}

.value-item h3,
.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.value-item p,
.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-top: 4px solid #2c5f7d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f7d;
}

/* Statistics */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 1rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a3d4f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background-color: #e8f4f8;
}

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

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 1.25rem;
    color: #666;
    line-height: 1.8;
    border-top: 1px solid #e0e0e0;
}

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

.process-step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #2c5f7d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Philosophy and Team */
.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a3d4f;
}

.team-role {
    color: #2c5f7d;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Audience and Commitments */
.audience-list,
.commitments {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.audience-item,
.commitment-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2c5f7d;
}

.audience-item h3,
.commitment-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.audience-item p,
.commitment-item p {
    color: #666;
    line-height: 1.7;
}

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

.contact-info,
.contact-details {
    flex: 1 1 400px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-item a {
    color: #2c5f7d;
    font-weight: 500;
}

.contact-note {
    font-size: 0.9375rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a3d4f;
}

.contact-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.company-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f7d;
}

.company-info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

.company-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.company-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: #888;
}

/* Professional Info */
.professional-info {
    max-width: 800px;
    margin: 0 auto;
}

.professional-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.professional-list {
    list-style-position: inside;
    color: #666;
    line-height: 2;
    margin: 1.5rem 0;
}

.professional-list li {
    padding-left: 1rem;
}

/* Thank You */
.thank-you-icon {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3d4f;
}

.legal-content h2:first-child {
    margin-top: 1rem;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5f7d;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #666;
    line-height: 1.8;
}

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

.legal-content a {
    color: #2c5f7d;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a3d4f;
}

.cookie-table td {
    color: #666;
}

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

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #2c5f7d;
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background-color: #e8f4f8;
    border-color: #e8f4f8;
}

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

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d4f;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-content a {
    color: #e8f4f8;
    text-decoration: underline;
}

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

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

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

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

.cookie-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a3d4f;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-description {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-item,
    .service-card,
    .value-item,
    .benefit-item,
    .philosophy-item,
    .process-step,
    .audience-item,
    .commitment-item {
        flex: 1 1 100%;
    }

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

    .timeline-year {
        min-width: auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}