/* 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;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

/* 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-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b7355;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8b7355;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

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

    .nav-menu a.active::after {
        display: none;
    }
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a47 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6d5a47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

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

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

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

section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

/* Intro Section */
.intro-section {
    background-color: #ffffff;
}

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

.intro-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background-color: #f9f7f5;
}

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

.value-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Featured Service */
.featured-service {
    background-color: #ffffff;
}

.featured-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.featured-text {
    flex: 1 1 400px;
}

.featured-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.featured-text p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.featured-image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.featured-image img {
    max-width: 100%;
    width: 400px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a47 100%);
    color: #ffffff;
}

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

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

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

.stat-label {
    display: block;
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f9f7f5;
}

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

.philosophy-content p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 250px;
    background-color: #f9f7f5;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f7f5;
}

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

.testimonial-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.0625rem;
}

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

/* Insights Section */
.insights-section {
    background-color: #ffffff;
}

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

.insight-card {
    flex: 1 1 300px;
    padding: 2rem;
    border-left: 4px solid #8b7355;
    background-color: #f9f7f5;
}

.insight-card h3 {
    margin-bottom: 1rem;
    color: #8b7355;
}

.insight-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background-color: #f9f7f5;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8e0d5;
    margin-bottom: 1rem;
}

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

.faq-question:hover {
    color: #8b7355;
}

.faq-icon {
    font-size: 1.5rem;
    color: #8b7355;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.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;
}

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a47 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 0;
}

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

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

.cta-content .btn-primary {
    background-color: #ffffff;
    color: #8b7355;
}

.cta-content .btn-primary:hover {
    background-color: #f5f1ed;
}

/* Services Page */
.services-intro {
    background-color: #ffffff;
    padding: 2rem 0;
}

.services-list-section {
    background-color: #f9f7f5;
}

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

.service-card {
    flex: 1 1 350px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

.service-card h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

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

.service-details {
    font-size: 0.9375rem;
    color: #7a8b9c;
}

.service-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #8b7355;
    margin: 1.5rem 0;
}

/* Service Benefits */
.service-benefits-section {
    background-color: #ffffff;
}

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

.benefit-box {
    flex: 1 1 250px;
    text-align: center;
    padding: 2rem;
}

.benefit-box img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.benefit-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-box p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    background-color: #f9f7f5;
}

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

.comparison-card {
    flex: 1 1 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #8b7355;
}

.comparison-card h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.comparison-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Process Detail */
.process-detail-section {
    background-color: #ffffff;
}

.process-detail {
    max-width: 900px;
    margin: 0 auto;
}

.process-step-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: #e8e0d5;
    flex-shrink: 0;
}

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

.step-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact Page */
.contact-info-section {
    background-color: #f9f7f5;
}

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

.contact-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-card a {
    color: #8b7355;
    text-decoration: underline;
}

.contact-card a:hover {
    color: #6d5a47;
}

/* Visit Section */
.visit-section {
    background-color: #ffffff;
}

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

.visit-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Directions */
.directions-section {
    background-color: #f9f7f5;
}

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

.direction-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.direction-card h3 {
    margin-bottom: 1rem;
    color: #8b7355;
}

.direction-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact Reasons */
.contact-reasons-section {
    background-color: #ffffff;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.reason-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.reason-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.reason-text p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Company Info */
.company-info-section {
    background-color: #f9f7f5;
}

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

.company-info-content p {
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* About Page */
.story-section {
    background-color: #ffffff;
}

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

.story-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-section {
    background-color: #f9f7f5;
}

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

.mission-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values Detail */
.values-detail-section {
    background-color: #ffffff;
}

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

.value-detail-card {
    flex: 1 1 350px;
    padding: 2rem;
    background-color: #f9f7f5;
    border-radius: 8px;
}

.value-detail-card h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.value-detail-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background-color: #f9f7f5;
}

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

.team-intro p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f9f7f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon img {
    width: 50px;
    height: 50px;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    font-size: 0.9375rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Approach Section */
.approach-section {
    background-color: #ffffff;
}

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

.approach-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Selection Section */
.selection-section {
    background-color: #f9f7f5;
}

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

.selection-content h3 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.selection-content > p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.criteria-item h4 {
    color: #8b7355;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.criteria-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Milestones Section */
.milestones-section {
    background-color: #ffffff;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

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

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

/* Commitment Section */
.commitment-section {
    background-color: #f9f7f5;
}

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

.commitment-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Thank You Page */
.thankyou-section {
    padding: 6rem 0;
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thankyou-text {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.thankyou-content p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thankyou-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 4rem 0;
}

.legal-container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #7a8b9c;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.0625rem;
    color: #8b7355;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6d5a47;
}

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

.cookie-table thead {
    background-color: #f9f7f5;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #b8c5d0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #b8c5d0;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #b8c5d0;
    font-size: 0.9375rem;
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    color: #b8c5d0;
}

.cookie-buttons {
    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.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

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

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

.cookie-modal-content h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.cookie-option p {
    color: #5a6c7d;
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.9375rem;
}

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

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

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

    .featured-content {
        flex-direction: column;
    }

    .process-step-detail {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number-large {
        font-size: 2rem;
    }

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

    .timeline-year {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero,
    .cta-section {
        padding: 3rem 0;
    }

    .btn {
        width: 100%;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}