/* Root Variables */
:root {
    --primary-green: #1B7C4F;
    --secondary-blue: #0066CC;
    --accent-yellow: #FFB800;
    --text-dark: #1A202C;
    --background-light: #F7F9FB;
    --neutral-light: #E2E8F0;
    --white: #FFFFFF;
    --font-family: 'Inter', sans-serif;
}

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

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

/* Header & Navigation */
header {
    background-color: var(--white);
    padding: .25rem 0;
    border-bottom: 1px solid var(--neutral-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

/* 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 {
    font-size: 2rem;
    flex-shrink: 0;
}

.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 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.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 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.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;
    font-size: 2rem;
}

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

.objective-card p {
    font-size: 0.95rem;
    color: #718096;
    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;
    font-size: 2rem;
}

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

.explore-card p {
    font-size: 0.95rem;
    color: #718096;
    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: #718096;
    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: #CBD5E0;
    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 #4A5568;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #A0AEC0;
}

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

    .hero-buttons {
        flex-direction: column;
    }

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

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

.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: #999;
    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);
}

.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: 8px;
    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='%231A202C' 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);
}

.overview-section,
.indicators-section,
.visualizations-section,
.resources-section {
    padding: 4rem 2rem;
}

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

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

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

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

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

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

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

.overview-card h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

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

.indicator-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-light);
    position: relative;
}

.indicator-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.indicator-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.75rem;
}

.indicator-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.mini-chart {
    font-size: 1.5rem;
    text-align: right;
    opacity: 0.6;
}

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

.viz-card,
.viz-card-full {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.viz-card-full {
    margin-top: 2rem;
}

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

.viz-card p,
.viz-card-full p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.chart-placeholder {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-dark);
    opacity: 0.5;
    border: 2px dashed var(--neutral-light);
}

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

.resource-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.resource-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.resource-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
    flex-grow: 1;
}

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

.resource-meta span {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.6;
}

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

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

@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%;
    }

    .overview-grid,
    .indicators-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

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

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

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