/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1B5E20;    /* Deeper Forest Green */
    --secondary-color: #0D47A1;  /* Deep Blue */
    --accent-color: #FFB300;     /* Amber */
    --text-dark: #424242;
    --text-light: #757575;
    --text-lighter: #BDBDBD;
    --background-light: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    padding: 0.8rem 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.2rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(27, 94, 32, 0.05);
}

.nav-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.15);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
}

.nav-toggle:hover {
    background: rgba(27, 94, 32, 0.1);
}

.nav-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Banner Section - Modern Redesign */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0a1628 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #0a1628 0%, 
        #1a2f4a 20%,
        #0d3b4f 40%,
        #1a2332 60%,
        #0a1628 80%,
        #1a2f4a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(27, 94, 32, 0.35) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 75%, rgba(13, 71, 161, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 179, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(46, 139, 87, 0.25) 0%, transparent 40%);
    animation: colorPulse 25s ease-in-out infinite alternate;
    filter: blur(60px);
}

.hero-gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    background-size: 100px 100px;
    opacity: 0.5;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 75%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 25%; }
    100% { background-position: 0% 50%; }
}

@keyframes colorPulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(27, 94, 32, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(13, 71, 161, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, transparent 50%, rgba(10, 22, 40, 0.5) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: 
        radial-gradient(circle, rgba(255, 179, 0, 0.6) 1px, transparent 1px),
        radial-gradient(circle, rgba(46, 139, 87, 0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(13, 71, 161, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px);
    background-size: 250px 250px, 300px 300px, 200px 200px, 150px 150px;
    background-position: 0 0, 50px 50px, 100px 100px, 150px 150px;
    animation: particles-float 30s linear infinite;
    opacity: 0.6;
}

@keyframes particles-float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-150px) translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 6rem 0;
}

.hero-text {
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.25), rgba(13, 71, 161, 0.2));
    backdrop-filter: blur(15px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badge-pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { transform: scale(1.03); box-shadow: 0 6px 30px rgba(27, 94, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

@keyframes badge-shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.badge-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: icon-rotate 4s ease-in-out infinite;
}

@keyframes icon-rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    font-size: 3rem;
    opacity: 0.95;
    font-weight: 400;
    margin: 0.6rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.title-highlight {
    display: block;
    font-size: 4.8rem;
    background: linear-gradient(135deg, 
        #FFB300 0%, 
        #FFD54F 25%, 
        #FFF176 50%, 
        #FFD54F 75%, 
        #FFB300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite, glow-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 179, 0, 0.6));
    margin: 1rem 0;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
}

.title-highlight::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #FFB300, #FFD54F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(255, 179, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 179, 0, 0.9)); }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
    animation: fadeIn 1.5s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #FFD54F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 179, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), #FFD54F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 1.4rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #1B5E20, #2E7D32, #388E3C);
    color: var(--white);
    background-size: 200% 200%;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary.btn-hero:hover {
    background: linear-gradient(135deg, #2E7D32, #388E3C, #43A047);
    box-shadow: 
        0 20px 45px rgba(27, 94, 32, 0.5),
        0 0 40px rgba(27, 94, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary.btn-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
}

.btn-secondary.btn-hero:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-hero:hover .btn-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.globe-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.globe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    animation: globe-rotate 30s linear infinite;
}

@keyframes globe-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.globe-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 0 50px rgba(27, 94, 32, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.2);
    background: radial-gradient(circle, rgba(27, 94, 32, 0.1) 0%, transparent 70%);
}

.globe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.1) contrast(1.2);
}

.globe-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: orbit-rotate 20s linear infinite reverse;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation: orbit-rotate 25s linear infinite;
}

.orbit-3 {
    width: 340px;
    height: 340px;
    animation: orbit-rotate 30s linear infinite reverse;
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-landmarks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.landmark-marker {
    position: absolute;
    animation: marker-float 4s ease-in-out infinite;
}

@keyframes marker-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.marker-pin {
    font-size: 1.8rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.marker-pin:hover {
    transform: scale(1.2) rotate(10deg);
}

.marker-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.marker-pin:hover + .marker-label {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 20;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: arrow-drop 2s ease-in-out infinite;
}

@keyframes arrow-drop {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Responsive Design for Hero Banner */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .title-line {
        font-size: 2.3rem;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }
    
    .globe-inner {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 992px) {
    .hero-content .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .globe-container {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    
    .globe-inner {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2.3rem;
    }
    
    .title-line {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .globe-container {
        width: 200px;
        height: 200px;
    }
    
    .globe-inner {
        width: 150px;
        height: 150px;
    }
    
    .orbit-1 { width: 220px; height: 220px; }
    .orbit-2 { width: 240px; height: 240px; }
    .orbit-3 { width: 260px; height: 260px; }
    
    .marker-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1.4rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .globe-container {
        width: 160px;
        height: 160px;
    }
    
    .globe-inner {
        width: 120px;
        height: 120px;
    }
    
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 220px; height: 220px; }
    
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.8rem;
    }
}

/* Quick Access Section */
.quick-access {
    padding: var(--section-padding);
    background: var(--background-light);
}

.quick-access h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.quick-access h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.access-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.access-card:hover::before {
    transform: scaleX(1);
}

.access-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 50%;
    transition: var(--transition);
}

.access-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.15), rgba(13, 71, 161, 0.15));
}

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

.access-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #236B47;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #3A6B94;
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.map-section p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-container {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border: 1px solid var(--background-light);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
}

.map-controls {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.map-btn {
    background: linear-gradient(135deg, var(--secondary-color), #1565C0);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 140px;
}

.map-btn:hover {
    background: linear-gradient(135deg, #1565C0, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Featured Articles Home Section */
.featured-articles-home {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: rgba(27, 94, 32, 0.08);
}

.view-all-btn:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateX(5px);
}

/* Hero Article */
.hero-article {
    margin-bottom: 5rem;
}

.hero-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--background-light);
}

.hero-article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.hero-article-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-article-card:hover .hero-article-image img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #2E7D32);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-article-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-article-content h3 {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
}

.hero-article-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.article-meta {
    display: flex;
    gap: 2.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

/* Articles Showcase */
.articles-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.articles-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.small-articles {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--background-light);
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.showcase-card.large {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.showcase-card.small .showcase-image {
    height: 220px;
}

.showcase-card.large .showcase-image {
    height: 100%;
}

.showcase-image {
    position: relative;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.08);
}

.showcase-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #1565C0);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.showcase-card.large h4 {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.showcase-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
}

.read-time {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--background-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.showcase-card.large .read-time {
    margin-top: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

/* Map-specific styles */
.country-popup {
    min-width: 200px;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.popup-content p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.learn-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 8px;
}

.learn-more-btn:hover {
    background: #236B47;
}

.country-info-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.info-header img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
}

.info-header h3 {
    margin: 0;
    flex: 1;
    color: var(--text-dark);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

.info-content {
    padding: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-item .label {
    font-weight: 600;
    color: var(--text-dark);
}

.info-item .value {
    color: var(--text-light);
}

.info-actions {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.info-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.region-filter {
    margin-left: 1rem;
}

.region-filter select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background: white;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.map-error {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.notification {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* About Page Styles */
.about-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.mission-section {
    padding: 4rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

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

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mission-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.offerings-section {
    padding: 4rem 0;
    background: var(--background-light);
}

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

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

.offering-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

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

.offering-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
}

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

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

.approach-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.impact-section {
    padding: 4rem 0;
    background: var(--background-light);
}

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

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

.impact-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.technology-section {
    padding: 4rem 0;
}

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

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

.tech-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tech-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Contact Page Styles */
.contact-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.contact-info {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.info-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
}

.faq-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E0E0E0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.response-section {
    padding: 4rem 0;
    background: var(--background-light);
}

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

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

.response-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

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

.response-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.response-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.alternative-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.alternative-item {
    padding: 1.5rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.alternative-item:hover {
    border-color: var(--primary-color);
    background: rgba(46, 139, 87, 0.05);
}

.alternative-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.alternative-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    margin-top: 80px;
    padding: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--background-light);
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-body {
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E0E0E0;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-dark);
}

.contact-info {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 9999;
        height: 100vh;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--background-light);
    }

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

    .nav-link {
        justify-content: center;
        padding: 1rem;
    }

    .nav-icon {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Banner responsive styles */
    .hero-banner {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-highlight {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .banner-stats {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .banner-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .banner-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .floating-elements {
        display: none;
    }
    
    .access-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    /* Featured articles responsive */
    .hero-article-card {
        grid-template-columns: 1fr;
    }

    .articles-row {
        grid-template-columns: 1fr;
    }

    .showcase-card.large {
        grid-template-columns: 1fr;
    }

    .hero-article-content {
        padding: 2rem;
    }

    .hero-article-content h3 {
        font-size: 1.8rem;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: center;
    }

    .country-info-panel {
        position: fixed;
        top: 80px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: 60vh;
        overflow-y: auto;
    }

    .region-filter {
        margin-left: 0;
        margin-top: 1rem;
    }

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

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

    .mission-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .legal-content {
        padding: 2rem 0;
    }

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

    .legal-section ul {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .carousel-content {
        padding: 1.5rem;
    }
    
    .carousel-content h2 {
        font-size: 1.8rem;
    }
    
    .quick-access h2,
    .map-section h2,
    .featured-content h2 {
        font-size: 2rem;
    }
}

/* Fix z-index issues with Leaflet map controls */
.leaflet-control-zoom {
    z-index: 500;
}

.leaflet-control-attribution {
    z-index: 500;
}

.leaflet-control-container {
    z-index: 500;
}

.leaflet-control {
    z-index: 500;
}

.leaflet-popup-pane {
    z-index: 600;
}

.leaflet-tooltip-pane {
    z-index: 650;
}
