/* Root Variables */
:root {
    --primary-green: #047E37;
    --secondary-blue: #1D4ED8;
    --accent-yellow: #FDC047;
    --text-dark: #1E293B;
    --background-light: #F3FAF7;
    --neutral-light: #E2E8F0;
    --white: #FFFFFF;
    --font-family: 'Inter', sans-serif;
    --text-muted: #64748B;
    --text-muted-light: #94A3B8;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all ease-in 100ms;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* Typography Styles */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.caption {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

.caption-light {
    font-weight: 300;
}

/* Header & Navigation */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 100;
}

header {
    background-color: var(--white);
    padding: .25rem 0;
    border-bottom: 1px solid var(--neutral-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
}

.logo:hover {
   opacity: 0.8;
}

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

.language-selector {
    padding: 0.5rem 1rem;
    border: 1px solid var(--neutral-light);
    border-radius: 4px;
    background-color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        padding: 0;
        border-bottom: 1px solid var(--neutral-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    nav.active {
        max-height: 500px;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
    }

    nav a {
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid var(--neutral-light);
        text-align: center;
    }

    nav a:hover {
        background-color: var(--background-light);
    }

    .language-selector {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
    }

    .header-container {
        position: relative;
    }
}

/* Hero Section */
.hero {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Carousel Background Styles */
.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.carousel-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.carousel-active {
    /* opacity: 0.4; */
    z-index: 2;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.carousel-active {
    background-color: var(--white);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 2rem;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #036a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1a3fb0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--neutral-light);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-icon:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.hero-image {
    background-color: var(--background-light);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-light);
}

/* Stats Section */
.stats {
    background-color: var(--background-light);
    padding: 3rem 0;
    margin-top: 3rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Introduction Section */
.introduction {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.introduction-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.introduction-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Waste Challenge Section */
.waste-challenge {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.waste-challenge-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.challenge-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--primary-green);
}

.challenge-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Our Solution Section */
.our-solution {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.our-solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.solution-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.solution-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.3;
    flex-shrink: 0;
}

.solution-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* What We Deliver Section */
.what-we-deliver {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.what-we-deliver-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.deliver-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--background-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliver-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.deliver-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.deliver-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.deliver-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Impact Goals Section */
.impact-goals {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.impact-goals-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.impact-item {
    text-align: center;
    padding: .5rem 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    border: 2px solid var(--neutral-light);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 6px 16px rgba(27, 124, 79, 0.15);
}

.impact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.impact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Core Objectives Section */
.core-objectives {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.core-objectives-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.objective-card {
    text-align: center;
    padding: 2rem;
}

.objective-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.objective-icon svg {
    width: 28px;
    height: 28px;
}

.objective-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.objective-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Explore the Observatory Section */
.explore {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.explore-container {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.explore-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.explore-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.explore-icon svg {
    width: 28px;
    height: 28px;
}

.explore-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.explore-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Featured Insights Section */
.featured-insights {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.featured-insights-container {
    max-width: 1200px;
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.insight-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-yellow);
}

.insight-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.insight-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.insight-source {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-section a {
    color: var(--neutral-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--text-muted);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.footer-logo {
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .header-container {
        /* flex-direction: column; */
        gap: 1rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-container,
    .objectives-grid,
    .challenge-grid,
    .solution-grid,
    .deliver-grid,
    .impact-grid,
    .explore-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Privacy Policy Page Styles
   =========================== */
.privacy-hero {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a5e3a 100%);
    color: var(--white);
    text-align: center;
}

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

.privacy-subtitle {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 1rem;
    opacity: 0.92;
    line-height: 1.7;
}

.privacy-effective {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

.privacy-content-section {
    padding: 3rem 2rem 5rem;
    background-color: var(--neutral-light, #f8f9fa);
}

.privacy-container {
    max-width: 840px;
    margin: 0 auto;
}

.privacy-block {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.privacy-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-green);
}

.privacy-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
}

.privacy-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary, #555);
    margin-bottom: 0.75rem;
}

.privacy-block ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
}

.privacy-block ul li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #555);
}

.privacy-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.privacy-block a {
    color: var(--secondary-blue, #1a5276);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed currentColor;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.privacy-block a:hover {
    color: var(--primary-green, #2e8b57);
    border-bottom-color: var(--primary-green, #2e8b57);
}

.privacy-block code {
    background-color: rgba(0, 0, 0, 0.06);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.privacy-sub-block {
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
    border-left: 3px solid rgba(46, 139, 87, 0.2);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-right: 0;
    margin-left: 0.25rem;
}

.privacy-sub-block h3 {
    padding-left: 0.75rem;
}

.privacy-sub-block p,
.privacy-sub-block ul {
    padding-left: 0.75rem;
}

.privacy-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.privacy-table th,
.privacy-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--neutral-light, #e8e8e8);
    color: var(--text-secondary, #555);
}

.privacy-table th {
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    background-color: rgba(46, 139, 87, 0.06);
}

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

.privacy-contact-card {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(26, 82, 118, 0.05) 100%);
    border: 1px solid rgba(46, 139, 87, 0.15);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-top: 0.75rem;
}

.privacy-contact-card p {
    margin-bottom: 0.35rem;
}

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

    .privacy-subtitle {
        font-size: 1rem;
    }

    .privacy-block {
        padding: 1.5rem 1.25rem;
    }

    .privacy-content-section {
        padding: 2rem 1rem 3rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 4rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    background-color: var(--neutral-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-image::before {
    content: "The AWO Team";
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-mission {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.about-mission h2,
.about-vision h2,
.about-why h2,
.about-objectives h2,
.about-how h2,
.about-team h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-mission p,
.about-vision p,
.about-why p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-list,
.vision-list,
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mission-list li,
.vision-list li,
.objectives-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li::before,
.vision-list li::before,
.objectives-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.about-vision {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.about-why {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.about-objectives {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.about-how {
    padding: 4rem 2rem;
    background-color: var(--white);
}

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

.how-item {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.how-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.how-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.about-team {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card:first-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--neutral-light);
    margin: 0 auto 1.5rem;
    display: block;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Country Profiles Page */
.country-profile-header {
    padding: 3rem 2rem 2rem;
    background-color: var(--white);
    border-bottom: 2px solid var(--neutral-light);
}

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

.country-profile-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.country-dropdown {
    padding: 0.75rem 2rem 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%231E293B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.country-dropdown:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Section Styling */
.overview-section,
.snapshot-section,
.generation-section,
.collection-section,
.treatment-section,
.policy-section,
.challenges-section,
.opportunities-section,
.references-section {
    padding: 4rem 2rem;
}

.overview-section {
    background-color: var(--background-light);
}

.snapshot-section {
    background-color: var(--white);
}

.generation-section {
    background-color: var(--background-light);
}

.collection-section {
    background-color: var(--white);
}

.treatment-section {
    background-color: var(--background-light);
}

.policy-section {
    background-color: var(--white);
}

.challenges-section {
    background-color: var(--background-light);
}

.opportunities-section {
    background-color: var(--white);
}

.references-section {
    background-color: var(--background-light);
    border-top: 3px solid var(--primary-green);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
.overview-section h2,
.snapshot-section h2,
.generation-section h2,
.collection-section h2,
.treatment-section h2,
.policy-section h2,
.challenges-section h2,
.opportunities-section h2,
.references-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Overview Text */
.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
}

/* Snapshot Grid */
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.snapshot-card {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.snapshot-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snapshot-card p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin: 0;
}

/* Content Text Sections */
.content-text {
    max-width: 900px;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.content-text strong {
    color: var(--primary-green);
    font-weight: 600;
}

.content-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

.content-text li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Challenges List */
.challenges-list {
    max-width: 900px;
    list-style-type: none;
    padding: 0;
}

.challenges-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--white);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 6px;
    font-size: 1.05rem;
    line-height: 1.6;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Challenges Accordion */
.challenges-accordion {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.challenge-accordion-item {
    background-color: var(--white);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.challenge-accordion-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.challenge-accordion-item.active {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
}

.challenge-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary, #1a1a2e);
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.challenge-accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.challenge-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent-yellow);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.challenge-title {
    flex: 1;
}

.challenge-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--accent-yellow);
}

.challenge-accordion-item.active .challenge-chevron {
    transform: rotate(180deg);
}

.challenge-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem 0 3.75rem;
}

.challenge-accordion-item.active .challenge-accordion-body {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem 3.75rem;
}

.challenge-accordion-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary, #555);
    margin: 0;
}

/* References Section */
.references-content {
    max-width: 900px;
}

.references-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.references-content h3:first-child {
    margin-top: 0;
}

.references-list {
    list-style-type: none;
    padding: 0;
}

.references-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--white);
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--neutral-light);
}

.references-list li:hover {
    border-left-color: var(--primary-green);
    background-color: var(--background-light);
}

/* References Page Styles */
.references-header {
    padding: 4rem 2rem 3rem;
    background-color: var(--white);
    border-bottom: 3px solid var(--text-dark);
}

.references-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.intro-statement p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.data-integrity-note {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--neutral-light);
}

.data-integrity-note h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.data-integrity-note p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.data-integrity-note p:last-child {
    margin-bottom: 0;
}

/* Search Section */
.search-section {
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    background-color: var(--white);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    overflow: hidden;
    padding-left: 1rem;
}

.search-box .search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-box .search-icon svg {
    width: 20px;
    height: 20px;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: var(--font-family);
    border: none;
    outline: none;
    color: var(--text-dark);
}

.search-box input::placeholder {
    color: var(--text-dark);
    opacity: 0.5;
}

.search-button {
    padding: 1rem 1.5rem;
    /* background-color: var(--primary-green); */
    color: var(--text-dark);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button svg {
    width: 20px;
    height: 20px;
}

.search-button:hover {
    background-color: var(--background-light);
}

/* Reference Categories */
.reference-category {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.reference-category:nth-child(even) {
    background-color: var(--background-light);
}

.reference-category h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

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

.reference-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--neutral-light);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
}

.reference-category:nth-child(even) .reference-card {
    background-color: var(--white);
}

.reference-card:hover {
    border-left-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.reference-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reference-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.reference-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background-color: var(--secondary-blue);
    color: var(--white);
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0.45;
}

.reference-author,
.reference-meta {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.reference-author em {
    color: var(--secondary-blue);
}

.reference-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-light);
    gap: 1rem;
    flex-wrap: wrap;
}

.reference-countries {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.6;
    font-weight: 500;
}

.reference-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reference-link:hover {
    color: var(--primary-green);
}

.reference-accessed {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .references-header h1 {
        font-size: 1.75rem;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-statement p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
    }

    .search-button {
        padding: 0.75rem;
    }

    .reference-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reference-badge {
        margin-bottom: 0.5rem;
    }

    .reference-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .reference-category h2 {
        font-size: 1.2rem;
    }
    
    .country-profile-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .country-dropdown {
        width: 100%;
    }

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

    .overview-section h2,
    .snapshot-section h2,
    .generation-section h2,
    .collection-section h2,
    .treatment-section h2,
    .policy-section h2,
    .challenges-section h2,
    .opportunities-section h2,
    .references-section h2 {
        font-size: 1.5rem;
    }

    .content-text p,
    .content-text li {
        font-size: 1rem;
    }

    .challenge-accordion-header {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .challenge-accordion-body {
        padding: 0 1rem 0 2.75rem;
    }

    .challenge-accordion-item.active .challenge-accordion-body {
        padding: 0 1rem 1rem 2.75rem;
    }

    .challenge-accordion-body p {
        font-size: 0.9rem;
    }

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

.resources-section {
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-section h2,
.indicators-section h2,
.visualizations-section h2,
.resources-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .country-profile-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .country-dropdown {
        width: 100%;
    }

.how-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   WASTE STREAMS PAGE STYLES
   ========================================== */

/* Hero Section */
.waste-streams-hero {
    padding: 3rem 2rem 2rem;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
    border-bottom: 2px solid var(--neutral-light);
}

.waste-streams-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Waste Categories Section */
.waste-categories-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.waste-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.waste-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.waste-category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waste-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.waste-category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.waste-category-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.waste-category-card .btn-secondary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-blue);
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.waste-category-card .btn-secondary:hover {
    background-color: #1a3fb0;
}

/* Detailed Insights Section */
.detailed-insights-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.back-button {
    background: none;
    border: none;
    color: var(--secondary-blue);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.stream-overview {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-green);
}

.stream-overview p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Statistics Section */
.statistics-section {
    margin-bottom: 4rem;
}

.statistics-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.statistics-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--background-light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary-blue);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--secondary-blue);
}

.stat-card.accent-green { border-top-color: var(--primary-green); }
.stat-card.accent-green::after { background-color: var(--primary-green); }
.stat-card.accent-yellow { border-top-color: var(--accent-yellow); }
.stat-card.accent-yellow::after { background-color: var(--accent-yellow); }

.stat-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
}

.stat-trend.negative {
    color: #EF4444;
}

.stat-trend svg {
    width: 14px;
    height: 14px;
}

/* Challenges and Solutions Grid */
.challenges-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.challenges-card,
.solutions-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.challenges-card {
    border-left: 4px solid #EF4444;
}

.solutions-card {
    border-left: 4px solid var(--primary-green);
}

.challenges-card h3,
.solutions-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.challenges-list,
.solutions-list {
    list-style: none;
    padding: 0;
}

.challenges-list li,
.solutions-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--neutral-light);
}

.challenges-list li:last-child,
.solutions-list li:last-child {
    border-bottom: none;
}

.challenges-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 18px;
    height: 18px;
    background-color: var(--accent-yellow);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.solutions-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Policy and Case Study Grid */
.policy-casestudy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.policy-card,
.casestudy-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.policy-card {
    border-left: 4px solid var(--secondary-blue);
}

.casestudy-card {
    border-left: 4px solid var(--accent-yellow);
}

.policy-card h3,
.casestudy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.policy-card p,
.casestudy-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Responsive Design for Waste Streams */
@media (max-width: 1024px) {
    .waste-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .challenges-solutions-grid,
    .policy-casestudy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .waste-streams-hero {
        padding: 2rem 1.5rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .waste-categories-section {
        padding: 3rem 1.5rem;
    }

    .waste-categories-section h2 {
        font-size: 1.75rem;
    }

    .waste-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .waste-category-card {
        padding: 2rem 1.5rem;
    }

    .waste-category-card p {
        min-height: auto;
    }

    .detailed-insights-section {
        padding: 3rem 1.5rem;
    }

    .insights-title {
        font-size: 1.75rem;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .challenges-card,
    .solutions-card,
    .policy-card,
    .casestudy-card {
        padding: 1.5rem;
    }

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

    .innovation-card {
        padding: 1.5rem;
    }
}

/* =========================
   Innovations Page Styles
   ========================= */

.innovations-header {
    padding: 3rem 2rem 2rem;
    background-color: var(--white);
    border-bottom: 2px solid var(--neutral-light);
}

.innovations-header .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.innovations-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.innovations-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.innovations-header .country-dropdown {
    display: inline-block;
}

/* Innovations Sections */
.smart-tech-section,
.recycling-section,
.wte-section,
.community-section,
.circular-section,
.impact-section {
    padding: 3rem 2rem;
}

.smart-tech-section {
    background-color: var(--white);
}

.recycling-section {
    background-color: var(--background-light);
}

.wte-section {
    background-color: var(--white);
}

.community-section {
    background-color: var(--background-light);
}

.circular-section {
    background-color: var(--white);
}

.impact-section {
    background-color: var(--background-light);
}

/* Innovations Grid */
.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Innovation Card */
.innovation-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recycling-section .innovation-card,
.community-section .innovation-card {
    background-color: var(--white);
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.innovation-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin: 0 0 1rem 0;
}

.innovation-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Impact List */
.impact-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.impact-list li {
    padding: 1.25rem 1.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.impact-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}
/* ===================================
   POLICIES PAGE SPECIFIC STYLES
   =================================== */

.policies-page .hero-section {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem 0 2rem;
    border-bottom: 2px solid var(--neutral-light);
}

.policies-page .registry-metadata {
    background: var(--background-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    border: 1px solid var(--neutral-light);
}

.policies-page .registry-metadata p {
    margin: 0;
    color: var(--text-dark);
}

.policies-page .hero-section h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.policies-page .overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    color: var(--text-dark);
    opacity: 0.8;
}

.policies-page .navigation-section {
    background: var(--background-light);
    padding: 3rem 0;
    border-bottom: 2px solid var(--neutral-light);
}

.policies-page .jump-navigation {
    margin-bottom: 2rem;
}

.policies-page .jump-navigation h3 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.policies-page .jump-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.policies-page .jump-navigation a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.policies-page .jump-navigation a:hover {
    border-bottom-color: var(--secondary-blue);
}

.policies-page .filter-section {
    margin-bottom: 2rem;
}

.policies-page .filter-section h3 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.policies-page .filter-checkboxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.policies-page .filter-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.policies-page .filter-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

/* General Form Components */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    background-color: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary-green);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%231E293B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.form-radio,
.form-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.form-radio input[type="radio"],
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.policies-page .policy-section {
    padding: 4rem 0;
}

.policies-page .policy-section h2 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: 0.5rem;
}

.policies-page .policy-card {
    background: var(--white);
    border: 1px solid var(--neutral-light);
    border-left: 4px solid var(--secondary-blue);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.policies-page .policy-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.policies-page .policy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.policies-page .policy-header h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    flex: 1;
    min-width: 300px;
}

.policies-page .coverage-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.policies-page .coverage-badge.regional {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.policies-page .policy-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policies-page .policy-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid var(--neutral-light);
    border-bottom: 1px solid var(--neutral-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.policies-page .policy-meta strong {
    color: var(--text-dark);
}

.policies-page .policy-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.policies-page .policy-links a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.policies-page .policy-links a:hover {
    background: var(--secondary-blue);
    color: var(--white);
}

.policies-page .section-note {
    background: var(--background-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-left: 3px solid var(--secondary-blue);
}

.policies-page .policy-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.policies-page .policy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--neutral-light);
    border-radius: 8px;
    overflow: hidden;
}

.policies-page .policy-table thead {
    background: var(--primary-green);
    color: var(--white);
}

.policies-page .policy-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.policies-page .policy-table td {
    padding: 1rem;
    border-top: 1px solid var(--neutral-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.policies-page .policy-table tbody tr:hover {
    background: var(--background-light);
}

.policies-page .policy-table .flag-emoji,
.policies-page .policy-table .flag-icon {
    width: 1.4rem;
    height: auto;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.policies-page .policy-table .trace-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.policies-page .policy-table .trace-link svg {
    width: 18px;
    height: 18px;
}

.policies-page .policy-table .trace-link:hover {
    transform: scale(1.2);
}

.policies-page .disclaimer {
    background: #FFF9E6;
    border: 1px solid #FFD700;
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5A4A1E;
}

.policies-page .disclaimer strong {
    color: #3D2F0E;
}

/* ========================
   Data Visualization Components
   ======================== */

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge svg {
    width: 14px;
    height: 14px;
}

.status-badge.badge-green {
    background-color: #DCFCE7;
    color: #166534;
}

.status-badge.badge-blue {
    background-color: transparent;
    color: var(--secondary-blue);
    border: 1.5px solid var(--secondary-blue);
}

.status-badge.badge-yellow {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-badge.badge-gray {
    background-color: var(--neutral-light);
    color: var(--text-dark);
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
}

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

.progress-bar-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.progress-bar-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-green);
}

.progress-bar-track {
    width: 100%;
    height: 10px;
    background-color: var(--neutral-light);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-green);
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.progress-bar-fill.blue {
    background-color: var(--secondary-blue);
}

.progress-bar-fill.yellow {
    background-color: var(--accent-yellow);
}

/* Data Legend */
.data-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.data-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.data-legend-dot.blue { background-color: var(--secondary-blue); }
.data-legend-dot.green { background-color: var(--primary-green); }
.data-legend-dot.yellow { background-color: var(--accent-yellow); }
.data-legend-dot.gray { background-color: var(--text-muted); }

/* Responsive Design for Policies Page */
@media (max-width: 768px) {
    .policies-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .policies-page .hero-section {
        padding: 2rem 0;
    }

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

    .policies-page .registry-metadata {
        flex-direction: column;
        gap: 0.5rem;
    }

    .policies-page .jump-navigation ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .policies-page .filter-checkboxes {
        flex-direction: column;
        gap: 0.75rem;
    }

    .policies-page .policy-card {
        padding: 1.5rem;
    }

    .policies-page .policy-header {
        flex-direction: column;
    }

    .policies-page .policy-header h3 {
        font-size: 1.2rem;
        min-width: 100%;
    }

    .policies-page .policy-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .policies-page .policy-table {
        font-size: 0.85rem;
    }

    .policies-page .policy-table th,
    .policies-page .policy-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ==========================================
   Citation Links & Reference Highlighting
   ========================================== */

/* Highlight animation when navigating to a reference via citation link */
@keyframes refHighlight {
    0% { box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.5); }
    30% { box-shadow: 0 0 0 8px rgba(46, 139, 87, 0.25); }
    100% { box-shadow: 0 0 0 0 rgba(46, 139, 87, 0); }
}

.reference-card.ref-highlight {
    animation: refHighlight 1.5s ease-out 2;
    border-left-color: var(--primary-green, #2e8b57);
    background-color: rgba(46, 139, 87, 0.04);
}

/* Inline citation link styling */
.cite-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2em;
    color: var(--secondary-blue, #1a5276);
    text-decoration: none;
    font-size: 0.8em;
    vertical-align: super;
    line-height: 1;
    padding: 0.1em 0.35em;
    background-color: rgba(26, 82, 118, 0.08);
    border-radius: 3px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cite-link:hover {
    background-color: rgba(26, 82, 118, 0.16);
    color: var(--primary-green, #2e8b57);
}

.cite-link svg {
    width: 0.75em;
    height: 0.75em;
}

/* Innovation external website link styling */
.innovation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    color: var(--secondary-blue, #1a5276);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    padding: 0.15em 0.5em;
    background-color: rgba(26, 82, 118, 0.08);
    border-radius: 4px;
    border-bottom: 1px dashed currentColor;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.innovation-link:hover {
    background-color: rgba(26, 82, 118, 0.16);
    color: var(--primary-green, #2e8b57);
    border-bottom-color: var(--primary-green, #2e8b57);
}

/* Block-level source attribution */
.source-attribution {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary-blue, #1a5276);
}

.source-attribution a {
    color: var(--secondary-blue, #1a5276);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed currentColor;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.source-attribution a:hover {
    color: var(--primary-green, #2e8b57);
    border-bottom-color: var(--primary-green, #2e8b57);
}