/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1A4037;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #7AB88F;
}

ul {
    list-style-position: inside;
}

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

/* Header and Navigation */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A4037;
}

.logo:hover {
    color: #2C5F4F;
}

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2C5F4F;
    border-bottom-color: #7AB88F;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1A4037;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E0F6FF 0%, #B8E6D5 100%);
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1A4037;
}

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

.hero-visual {
    margin-top: 2rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #B8E6D5 0%, #7AB88F 100%);
    padding: 3rem 0;
    text-align: center;
    color: #FFFFFF;
}

.page-hero h1 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

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

.btn-primary {
    background-color: #2C5F4F;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1A4037;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2C5F4F;
    color: #FFFFFF;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #5A6C7D;
}

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

.content-block h2 {
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Split Content */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-column {
    flex: 1;
}

/* Service Grid */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    background: linear-gradient(135deg, #E0F6FF 0%, #B8E6D5 100%);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

/* Featured Services */
.featured-services {
    background-color: #F8FAFB;
}

/* Statistics */
.stat-box {
    background-color: #E0F6FF;
    padding: 2rem;
    border-radius: 8px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C5F4F;
}

.stat-label {
    font-size: 1rem;
    color: #5A6C7D;
}

/* Regions / List Items */
.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.region-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.region-item h3 {
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonials {
    background-color: #F8FAFB;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #7AB88F;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.testimonial-author {
    font-weight: 600;
    color: #2C5F4F;
}

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

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2C5F4F;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #E0F6FF;
    border-radius: 8px;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

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

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    color: #2C5F4F;
}

/* Insights */
.insight-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.insight-block {
    padding: 2rem;
    background-color: #F8FAFB;
    border-radius: 8px;
}

.insight-block h3 {
    margin-bottom: 1rem;
    color: #1A4037;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

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

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F4F;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 1.25rem 0;
    line-height: 1.7;
}

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

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

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

/* Services List */
.service-detail {
    background-color: #FFFFFF;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E0F6FF;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    color: #1A4037;
}

.service-duration {
    font-size: 0.9375rem;
    color: #5A6C7D;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2C5F4F;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-details-list p {
    margin-bottom: 0.5rem;
}

.service-details-list strong {
    color: #1A4037;
}

/* Preparation / Info Sections */
.prep-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.prep-section h3 {
    margin-bottom: 1rem;
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: #F8FAFB;
    border-radius: 8px;
}

.member-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
}

.member-title {
    color: #2C5F4F;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    margin-top: 2rem;
}

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

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

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

/* Approach Grid */
.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.approach-item h3 {
    margin-bottom: 1rem;
    color: #2C5F4F;
}

/* Highlight Box */
.highlight-box {
    background-color: #E0F6FF;
    padding: 2rem;
    border-radius: 8px;
}

.principle-list {
    list-style-position: outside;
    margin-left: 1.5rem;
}

.principle-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 2;
}

.contact-additional {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block:last-child {
    margin-bottom: 0;
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2C5F4F;
}

.contact-note {
    font-size: 0.9375rem;
    color: #5A6C7D;
    font-style: italic;
    margin-top: 0.5rem;
}

.info-box {
    background-color: #F8FAFB;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box h3 {
    margin-bottom: 1rem;
}

.info-box ul {
    list-style-position: outside;
    margin-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #F8FAFB;
    border-radius: 8px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
    text-align: center;
}

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

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #F8FAFB;
    border-radius: 8px;
}

.suggestion-card h3 {
    margin-bottom: 1rem;
}

.suggestion-card a {
    font-weight: 600;
    color: #2C5F4F;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.last-updated {
    font-size: 0.9375rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    color: #1A4037;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2C5F4F;
}

.legal-section ul {
    margin-left: 1.5rem;
    list-style-position: outside;
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1A4037;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section h4 {
    color: #7AB88F;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #B8E6D5;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #B8E6D5;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: #7AB88F;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 230, 213, 0.2);
    font-size: 0.875rem;
    color: #B8E6D5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A4037;
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* 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: 10001;
    padding: 1rem;
}

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

.cookie-modal-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-option p {
    font-size: 0.9375rem;
    color: #5A6C7D;
    margin-left: 1.75rem;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .split-content {
        flex-direction: row;
    }

    .contact-grid {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .service-card,
    .testimonial,
    .benefit-item {
        flex: 1 1 100%;
    }

    .service-header {
        flex-direction: column;
    }

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

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

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

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

    .btn {
        width: 100%;
    }

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

    .service-price {
        font-size: 1.75rem;
    }
}