/* 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: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

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

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

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

.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, -7px);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0.5rem 0;
        background: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: none;
    }
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: #1a3a1b;
    margin-bottom: 1rem;
}

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

.hero-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}

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

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-visual {
        flex: 1;
    }
}

/* 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: none;
    font-size: 1rem;
}

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

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

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

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

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

.page-hero h1 {
    font-size: 2.25rem;
    color: #1a3a1b;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #666;
}

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

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

section h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

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

.content-col {
    flex: 1;
}

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

@media (min-width: 768px) {
    .content-grid {
        flex-direction: row;
        gap: 3rem;
    }
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

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

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

/* Statistics */
.statistics-section {
    background-color: #2c5f2d;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #97c4a3;
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }
}

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

.process-step {
    background: #f5f9f5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

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

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

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

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

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

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

/* Industries */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.industry-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
}

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

    .industry-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .industry-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

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

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

.insight-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

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

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

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

    .insight-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

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

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

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

.faq-question:hover {
    color: #2c5f2d;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #2c5f2d;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

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

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

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

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: #97c4a3;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #c8e6c9;
    line-height: 1.6;
}

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

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

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

.footer-col ul a:hover {
    color: #97c4a3;
}

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

.footer-bottom p {
    color: #97c4a3;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

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

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

.value-card p {
    color: #666;
    line-height: 1.6;
}

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

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .value-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

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

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

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

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

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

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

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

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

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

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

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

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

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

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

.benefit-item {
    background: #f5f9f5;
    padding: 2rem;
    border-radius: 12px;
}

.benefit-item h3 {
    margin-bottom: 1rem;
}

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

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

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

/* Services List */
.service-full {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: #f5f9f5;
}

.service-title {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

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

.service-description {
    color: #666;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
}

.service-price {
    text-align: right;
}

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

.service-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.details-col {
    flex: 1;
}

.details-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

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

@media (min-width: 768px) {
    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-details {
        flex-direction: row;
    }
}

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.comparison-header {
    background: #2c5f2d;
    color: #fff;
    font-weight: 700;
}

.comparison-cell {
    padding: 1rem;
    flex: 1;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

@media (min-width: 768px) {
    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
    }

    .comparison-cell:last-child {
        border-right: none;
    }
}

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

.process-step-simple {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

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

@media (min-width: 768px) {
    .process-simple {
        flex-direction: row;
    }

    .process-step-simple {
        flex: 1;
    }
}

/* Benefits Simple */
.benefits-grid-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-simple {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.benefit-simple h3 {
    margin-bottom: 0.75rem;
}

.benefit-simple p {
    color: #666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .benefits-grid-simple {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-simple {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

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

.contact-intro-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    background: #f5f9f5;
    padding: 2rem;
    border-radius: 12px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.contact-block h3 {
    margin-bottom: 1rem;
}

.contact-block p {
    color: #666;
    line-height: 1.6;
}

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

.contact-description {
    flex: 1;
}

.contact-description h2 {
    margin-bottom: 1.5rem;
}

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

.directions-box {
    background: #f5f9f5;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.directions-box h3 {
    margin-bottom: 1.5rem;
}

.directions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-item strong {
    display: block;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.direction-item p {
    color: #666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 0 0 350px;
    }
}

/* Company Details */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.detail-item strong {
    color: #2c5f2d;
    font-weight: 600;
}

.detail-item span {
    color: #555;
}

@media (min-width: 768px) {
    .detail-item {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

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

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

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

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

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.next-steps {
    background: #f5f9f5;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.step-card p {
    color: #666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

/* Legal Content */
.legal-content {
    background: #fff;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    color: #1a3a1b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    color: #2c5f2d;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.legal-text strong {
    color: #2c5f2d;
}

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

.legal-text a:hover {
    color: #1a3a1b;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cookies-table thead {
    background: #2c5f2d;
    color: #fff;
}

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

.cookies-table th {
    font-weight: 600;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

.cookies-table tbody tr:hover {
    background: #f5f9f5;
}

/* Highlight Box */
.highlight-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.highlight-box svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.highlight-text {
    text-align: center;
    margin-bottom: 1rem;
}

.highlight-text strong {
    display: block;
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 0.25rem;
}

.highlight-text span {
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 27, 0.97);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    color: #e8f5e9;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-banner-text a {
    color: #97c4a3;
    text-decoration: underline;
}

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

.cookie-banner-actions .btn {
    padding: 0.75rem 1.5rem;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-banner-actions {
        flex-wrap: nowrap;
    }
}

/* Cookie Preferences Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #2c5f2d;
}

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

.cookie-preference {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-preference:last-child {
    border-bottom: none;
}

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

.cookie-preference h3 {
    font-size: 1rem;
    margin: 0;
}

.cookie-preference p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle.active {
    background: #2c5f2d;
}

.cookie-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(24px);
}

.cookie-modal-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

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

@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }
}