* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('icons/Green-Belt-Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links .active {
    border-bottom: 2px solid white;
    padding-bottom: calc(0.5rem - 2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 95, 45, 0.7), rgba(74, 124, 89, 0.7)),
                url('img/header.jpg');
    background-size: cover;
    background-position: center;
    padding: 2rem 2rem 4rem;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

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

.btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Village Cards for Home Page */
.village-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.village-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.village-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.village-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.village-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}

.village-card-content {
    padding: 2rem;
}

.village-card h3 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

.village-card .btn {
    width: 100%;
    text-align: center;
}

/* Alert Banner */
.alert-banner {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alert-banner h3 {
    color: #856404;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-banner h3::before {
    content: "⚠️";
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #4a7c59;
}

.section h2.center {
    text-align: center;
}

.section h2.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b6b;
    display: block;
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}

/* Impact Section */
.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.impact-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: #2c5f2d;
    font-size: 1.2rem;
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.heritage-quote {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.heritage-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c5f2d;
    margin: 0;
}

.heritage-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

/* Action Cards */
.action-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.action-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
}

.action-card:hover {
    transform: scale(1.05);
}

.action-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.action-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Newsletter Signup */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter h2::after {
    background: white;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form select {
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    flex: 1;
    min-width: 180px;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #ffd93d;
    color: #333;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #ffcd00;
}

/* Footer */
footer {
    background: #2c5f2d;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section a {
    color: #a7c4a7;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Horizontal Timeline Styles */
.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3rem 0;
    padding: 2rem 0;
    position: relative;
    overflow-x: auto;
    gap: 2rem;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #4a7c59 100%);
    opacity: 0.3;
    z-index: 0;
}

.timeline-phase {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f2d;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-phase.active .timeline-marker {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    animation: pulse 2s infinite;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.8);
    }
    100% {
        box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
    }
}

.timeline-phase-content {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-phase:hover .timeline-phase-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.timeline-phase.active .timeline-phase-content {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.timeline-phase-content h4 {
    color: #2c5f2d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.timeline-status {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.timeline-ref {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.timeline-phase-content ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.timeline-phase-content li {
    font-size: 0.9rem;
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.timeline-phase-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 0.8rem;
}

.timeline-key-message {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.timeline-key-message h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.timeline-key-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Footnotes and Citations */
.footnote-ref {
    font-size: 0.85rem;
    background: #4a7c59;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 0.2rem;
    transition: background 0.3s;
}

.footnote-ref:hover {
    background: #2c5f2d;
    color: white;
}

.footnotes-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-top: 3px solid #4a7c59;
}

.footnotes-section h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.footnotes-list {
    list-style: none;
    padding: 0;
}

.footnotes-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

.footnotes-list li:last-child {
    border-bottom: none;
}

.footnote-id {
    background: #4a7c59;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    margin-right: 0.5rem;
    font-weight: bold;
}

.methodology-box {
    background: #e8f5e9;
    border: 2px solid #4a7c59;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.methodology-box h4 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.methodology-box p {
    color: #2c5f2d;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Impact badges */
.impact-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.impact-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b6b;
    text-align: center;
}

.impact-badge .badge-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b6b;
    display: block;
    margin-bottom: 0.5rem;
}

.impact-badge .badge-label {
    color: #666;
    font-size: 0.9rem;
}

/* Evidence Gallery */
.evidence-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.evidence-tab {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.evidence-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.evidence-tab.active {
    border-color: #4a7c59;
    background: #e8f5e9;
}

.evidence-tab h3 {
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.evidence-tab p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.evidence-content {
    margin-top: 2rem;
}

.evidence-panel {
    display: none;
}

.evidence-panel.active {
    display: block;
}

.evidence-panel h3 {
    color: #2c5f2d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.evidence-panel h4 {
    color: #4a7c59;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

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

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

.cookie-reject-btn {
    background: #1e4020;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    opacity: 0.8;
}

.cookie-reject-btn:hover {
    background: #2c5f2d;
    opacity: 1;
}

.cookie-accept-btn {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #ff6b6b;
}

/* Documentation Cards */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.doc-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #4a7c59;
}

.doc-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.doc-card h4 {
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.doc-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo::before {
        width: 45px;
        height: 45px;
    }
}

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

    .hero .subtitle {
        font-size: 1.2rem;
    }

    header {
        padding: 0.75rem 0;
    }

    nav {
        position: relative;
    }

    .logo {
        font-size: 1rem;
    }

    .logo::before {
        width: 40px;
        height: 40px;
        margin-right: 8px;
        padding: 6px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c5f2d;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        gap: 0;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-links a {
        padding: 1rem;
        font-size: 1rem;
    }

    .nav-links .active {
        background: rgba(255, 255, 255, 0.1);
        border-bottom: none;
        padding: 1rem;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .village-cards {
        grid-template-columns: 1fr;
    }

    /* Timeline mobile adjustments */
    .timeline-horizontal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .timeline-horizontal::before {
        top: 0;
        left: 30px;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #ff6b6b 0%, #4a7c59 100%);
    }

    .timeline-phase {
        margin-left: 20px;
        padding-left: 40px;
    }

    .timeline-marker {
        position: absolute;
        left: -20px;
        top: 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .timeline-phase.active .timeline-marker {
        width: 50px;
        height: 50px;
        left: -25px;
    }

    .timeline-phase-content {
        padding: 1rem;
    }

    .timeline-phase-content h4 {
        font-size: 1rem;
    }

    .timeline-phase-content li {
        font-size: 0.85rem;
    }

    .action-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.modal-close:hover,
.modal-close:focus {
    color: #ff6b6b;
    background: #f8f9fa;
}

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

.modal-content h3 {
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.modal-content h4 {
    color: #4a7c59;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modal-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.modal-content ul {
    color: #333;
    line-height: 1.6;
}

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

.modal-content a:hover {
    color: #4a7c59;
}