/* 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;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #1a3009;
}

ul {
    list-style: none;
}

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

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

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

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f5f8f3;
    color: #2d5016;
}

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

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

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

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

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

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

.btn-primary:hover {
    background-color: #1a3009;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

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

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

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

section h2 {
    font-size: 2.5rem;
    color: #1a3009;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.philosophy-item img {
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

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

/* Services Highlight */
.services-highlight {
    background-color: #f9faf8;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-text,
.split-visual {
    flex: 1;
    min-width: 300px;
}

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

.split-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5c8a3a;
    font-weight: bold;
    font-size: 1.25rem;
}

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

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f5f8f3;
    border-radius: 8px;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #5c8a3a;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.375rem;
    color: #1a3009;
    margin-bottom: 1rem;
}

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

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

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #a8d88a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #e8f0e0;
}

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #5c8a3a;
}

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

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

/* Expertise Section */
.expertise {
    background-color: #fff;
}

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

.expertise-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f5f8f3;
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #555;
    line-height: 1.7;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-top: 3px solid #5c8a3a;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

/* Industries Section */
.industries {
    background-color: #fff;
}

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

.industry-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #f5f8f3;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card img {
    margin: 0 auto 1.5rem;
}

.industry-card h3 {
    font-size: 1.375rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #555;
    line-height: 1.7;
}

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

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #5c8a3a;
    font-weight: bold;
    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: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #e8f0e0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #1a3009;
    color: #e8f0e0;
    padding: 3rem 0 1rem;
}

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

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

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

.footer-col p {
    color: #c5d9b8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-col a {
    color: #c5d9b8;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #a8d88a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d5016;
}

.footer-bottom p {
    color: #c5d9b8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f5f8f3 0%, #e8f0e0 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a3009;
    margin-bottom: 1rem;
}

.header-intro {
    font-size: 1.25rem;
    color: #555;
}

/* Services Page */
.services-intro {
    text-align: center;
    padding: 2rem 0;
}

.services-intro p {
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    padding: 4rem 0;
}

.service-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 1.75rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: left;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d5016;
    margin: 1.5rem 0 0.5rem;
}

.service-note {
    font-size: 0.875rem;
    color: #777;
    font-style: italic;
}

/* Service Benefits */
.service-benefits {
    background-color: #f9faf8;
    padding: 4rem 0;
}

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Comparison Table */
.service-comparison {
    padding: 4rem 0;
}

.comparison-table {
    max-width: 900px;
    margin: 3rem auto 0;
}

.comparison-row {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: #f5f8f3;
    border-radius: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.comparison-label {
    flex: 2;
    min-width: 250px;
    color: #333;
    font-weight: 500;
}

.comparison-value {
    flex: 1;
    min-width: 200px;
    color: #2d5016;
    font-weight: 600;
}

/* Process Flow */
.service-process {
    background-color: #f9faf8;
    padding: 4rem 0;
}

.process-flow {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.flow-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
    border-radius: 8px;
}

.flow-number {
    font-size: 2rem;
    font-weight: bold;
    color: #5c8a3a;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.125rem;
    color: #2d5016;
    margin-bottom: 0.75rem;
}

.flow-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: #5c8a3a;
    padding: 0 1rem;
}

/* Contact Page */
.contact-intro {
    text-align: center;
    padding: 2rem 0;
}

.contact-intro p {
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-details {
    padding: 4rem 0;
}

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

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

.contact-icon {
    margin: 0 auto 1.5rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

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

.contact-card a {
    color: #2d5016;
    font-weight: 500;
}

.contact-note {
    font-size: 0.875rem;
    color: #777;
    margin-top: 1rem;
}

/* About Location */
.about-location {
    background-color: #f9faf8;
    padding: 4rem 0;
}

.location-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.location-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* Directions */
.directions {
    padding: 4rem 0;
}

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

.direction-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f5f8f3;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.direction-item p {
    color: #555;
    line-height: 1.7;
}

/* Company Info */
.company-info {
    background-color: #f9faf8;
    padding: 4rem 0;
}

.info-box {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #5c8a3a;
}

.info-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-box strong {
    color: #2d5016;
}

/* About Page */
.story {
    background-color: #fff;
    padding: 4rem 0;
}

.team {
    background-color: #f9faf8;
    padding: 4rem 0;
}

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

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

.member-avatar {
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.375rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #777;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Approach */
.approach {
    background-color: #fff;
    padding: 4rem 0;
}

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

.approach-content p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Principles */
.principles {
    background-color: #f9faf8;
    padding: 4rem 0;
}

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

.principle-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-top: 3px solid #5c8a3a;
}

.principle-item h3 {
    font-size: 1.375rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.principle-item p {
    color: #555;
    line-height: 1.7;
}

/* Milestones */
.milestones {
    background-color: #fff;
    padding: 4rem 0;
}

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

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

.timeline-item::before {
    content: "";
    position: absolute;
    left: 80px;
    top: 50px;
    width: 2px;
    height: calc(100% + 3rem);
    background-color: #e8f0e0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #5c8a3a;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #f5f8f3;
    border-radius: 8px;
}

.timeline-content h3 {
    font-size: 1.375rem;
    color: #2d5016;
    margin-bottom: 0.75rem;
}

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

/* Trust Indicators */
.trust-indicators {
    background-color: #f9faf8;
    padding: 4rem 0;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.trust-item img {
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

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

.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f5f8f3;
    border-radius: 8px;
}

.thank-you-box img {
    margin: 0 auto 2rem;
}

.thank-you-box h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.thank-you-box p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

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

.legal-text h2 {
    font-size: 2rem;
    color: #2d5016;
    margin: 2.5rem 0 1rem;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin: 2rem 0 1rem;
    text-align: left;
}

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

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3009;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #e8f0e0;
    line-height: 1.6;
}

.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.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

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

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

.modal-content h3 {
    font-size: 1.75rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f5f8f3;
    border-radius: 6px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

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

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

.cookie-option p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-left: 2rem;
}

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

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

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

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

    .nav-menu li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
    }

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

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

    section h2 {
        font-size: 2rem;
    }

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

    .flow-arrow {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item::before {
        display: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero .container {
        gap: 2rem;
    }

    .split-content {
        gap: 2rem;
    }
}

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

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

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.75rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}