:root {
    --bg: #ffffff;
    --panel: #f8f9fa;
    --text: #2c3e50;
    --muted: #6c757d;
    --brand: #28a745;
    --accent: #ffc107;
    --danger: #dc3545;
    --primary: #007bff;
    --light: #f8f9fa;
    --dark: #343a40;
    --gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerSlideIn 0.6s ease-out;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: headerSlideDown 0.4s ease-out;
}

@keyframes headerSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-10px);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 92%;
    animation: containerFadeIn 0.8s ease-out 0.2s both;
}

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

/* Header Brand */
.header-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.site-header.scrolled .logo {
    color: var(--text);
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.2), transparent);
    transition: left 0.6s ease;
}

.logo:hover::before {
    left: 100%;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
    text-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--brand), #20c997, var(--brand));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo:hover img {
    border-color: white;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    transform: rotate(5deg) scale(1.1);
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(40, 167, 69, 0.7);
    }
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, #20c997, var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s infinite;
}

@keyframes textGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(40, 167, 69, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(40, 167, 69, 0.6));
    }
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.site-header.scrolled .nav-link {
    color: var(--text);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(0, 123, 255, 0.15));
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
    transform: scale(0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.3), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 100px;
    height: 100px;
}

.nav-link:hover {
    color: var(--brand);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.site-header.scrolled .nav-link:hover {
    color: var(--brand);
}

.nav-link.active {
    color: var(--brand);
    background: rgba(40, 167, 69, 0.15);
    border: 2px solid rgba(40, 167, 69, 0.3);
    animation: activeGlow 3s infinite;
}

@keyframes activeGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    }
}

.nav-link i {
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--brand);
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.3) rotate(15deg); }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-donate {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #28a745;
    position: relative;
    overflow: hidden;
}

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

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

.btn-donate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #20c997, var(--brand));
    animation: donatePulse 2s infinite;
    border-color: #20c997;
}

@keyframes donatePulse {
    0%, 100% { 
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    }
    50% { 
        box-shadow: 0 15px 45px rgba(40, 167, 69, 0.7);
    }
}

.btn-donate i {
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-donate:hover i {
    transform: scale(1.3) rotate(15deg);
    animation: heartBeat 1s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1.3) rotate(15deg); }
    50% { transform: scale(1.4) rotate(20deg); }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.nav-toggle:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: scale(1.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    position: relative;
}

.bar {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
}

.site-header.scrolled .bar {
    background: var(--text);
}

.nav-toggle:hover .bar {
    background: var(--brand);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    transform: scaleY(1.2);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--brand);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--brand);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* Mobile Navigation */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-link {
        font-size: 18px;
        padding: 16px 24px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .nav-link:hover {
        background: rgba(40, 167, 69, 0.2);
        border-color: var(--brand);
    }

    .nav-toggle {
        display: block;
    }

    .header-actions {
        position: relative;
        z-index: 1001;
    }

    .logo-text {
        display: none;
    }
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    position: relative;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger .bar:nth-child(1) {
    margin-bottom: 4px;
}

.hamburger .bar:nth-child(2) {
    margin-bottom: 4px;
}

.nav-toggle[aria-expanded="true"] .hamburger .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .hamburger .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-actions {
    display: none;
}

@media (max-width: 768px) {
    .site-header {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .site-header .container { 
        padding: 16px 20px;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .logo img { width: 46px; height: 46px; }

    .logo {
        color: #2c3e50 !important;
    }

    .header-brand {
        z-index: 10001;
    }

    .site-header {
        z-index: 10000 !important;
    }

    .nav-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative;
        right: auto;
        top: auto;
        z-index: 10002 !important;
        background: transparent;
        border: none;
        padding: 8px;
        cursor: pointer !important;
        min-width: 40px;
        min-height: 40px;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(40, 167, 69, 0.3);
    }

    .nav-toggle .hamburger .bar {
        background: #2c3e50 !important;
    }

    .nav-toggle.is-open {
        z-index: 10001 !important;
    }

    .nav-toggle.is-open .bar { 
        background: #2c3e50 !important; 
    }

    .nav {
        position: fixed !important;
        inset: 0 !important;
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
        z-index: 10000 !important;
        padding: 5px 32px 60px 32px !important;
        min-height: 98vh !important;
        height: 100% !important;
        transform: none !important;
        overflow-y: auto !important;
    }

    .nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        display: flex !important;
    }

    .mobile-nav-logo {
        display: block !important;
        margin-bottom: 40px;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav.active .mobile-nav-logo {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-nav-logo .logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-logo .logo img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 13px;
        text-align: center;
        width: 100%;
        max-width: 400px;
        padding: 0;
        animation: menuFadeIn 0.4s ease both;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav.active .nav-list {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-item { 
        width: 100%; 
    }

    .nav-link {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 16px 24px;
        color: #2c3e50;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        border-radius: 12px;
        background: #f8f9fa;
        border: 2px solid transparent;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: #ffffff;
        background: var(--brand);
        border-color: var(--brand);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }

    .nav-link.active {
        color: #ffffff;
        background: var(--brand);
        border-color: var(--brand);
    }

    .nav.active .nav-link {
        background: #f8f9fa !important;
        border: 2px solid transparent !important;
        box-shadow: none !important;
    }

    .nav.active .nav-link.active {
        background: var(--brand) !important;
        color: #ffffff !important;
    }

    .nav.active .nav-link:hover {
        background: var(--brand) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .header-actions {
        display: none;
    }

    .mobile-actions { display: none; }
}

@media (min-width: 769px) {
    .mobile-nav-logo {
        display: none !important;
    }
    
    .nav {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: transparent !important;
        padding: 0 !important;
        overflow: visible !important;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-donate span {
        display: none;
    }

    .header-actions .btn-donate {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Crisis Section Mobile Styles */
    .crisis-section {
        padding: 40px 0;
    }
    
    .crisis-content {
        gap: 20px;
    }
    
    .crisis-text h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .crisis-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .crisis-stats {
        gap: 15px;
        margin: 15px 0;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .crisis-images img {
        height: 200px;
    }
}

/* Hero */
.hero {
    height: 100vh;
    background-color: #2c3e50;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}
.hero-content { 
    position: absolute; 
    bottom: 60px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1; 
    text-align: center; 
}
.hero-tagline { 
    margin: 0; 
    font-size: clamp(28px, 6vw, 48px); 
    line-height: 1.2; 
    color: white; 
    font-weight: 700; 
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
    text-transform: none;
    letter-spacing: 0.5px;
}
.btn { appearance: none; border: 2px solid transparent; padding: 12px 16px; border-radius: 10px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--gradient); color: white; box-shadow: var(--shadow); border-color: #28a745; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); border-color: #20c997; }
.btn-ghost { background: rgba(255,255,255,0.2); border: 2px solid rgba(255, 255, 255, 0.5); color: white; backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.3); color: white; border-color: white; }

/* Navigation Arrows */
.hero-nav-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}
.nav-arrow:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.2);
}
.nav-arrow-left {
    left: 30px;
}
.nav-arrow-right {
    right: 30px;
}
@media (max-width: 768px) {
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .nav-arrow-left {
        left: 15px;
    }
    .nav-arrow-right {
        right: 15px;
    }
}



/* Crisis Section */
.crisis-section {
    background: var(--light);
    padding: 80px 0;
}
.crisis-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.crisis-text h3 {
    font-size: 28px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}
.crisis-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 20px;
}
.crisis-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}
.crisis-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.crisis-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--brand);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h2 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.solution-header p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution-approach {
    margin-bottom: 80px;
}

.approach-text {
    max-width: 800px;
    margin: 0 auto;
}

.approach-text h3 {
    font-size: 28px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 600;
}

.approach-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 24px;
}

.monitoring-grid {
    margin: 40px 0;
}

.monitoring-grid h4 {
    font-size: 24px;
    color: var(--text);
    margin: 0 0 32px;
    font-weight: 600;
    text-align: center;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.activity-card {
    background: white;
    border: 2px solid var(--light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.activity-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.activity-image {
    width: 100%;
    height: 200px;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-card h5 {
    font-size: 18px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 600;
}

.activity-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.solution-strategy {
    margin-top: 80px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    background: var(--light);
    transform: translateY(-4px);
}

.strategy-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.strategy-item h4 {
    font-size: 22px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 600;
}

.strategy-item p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Solution Call Section */
.solution-call {
    margin: 60px 0;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    border-left: 6px solid var(--brand);
}

.call-content h3 {
    font-size: 28px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}

.call-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.urgent-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
}

.stat-box {
    text-align: center;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--brand);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.urgent-question {
    font-size: 20px;
    color: var(--danger);
    font-weight: 600;
    text-align: center;
    margin: 30px 0 0;
    font-style: italic;
}

/* Solution Challenges Section */
.solution-challenges {
    margin: 60px 0;
}

.challenge-content h3 {
    font-size: 28px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
}

.challenge-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.awareness-campaigns {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(0, 123, 255, 0.05));
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(40, 167, 69, 0.1);
}

.campaigns-header {
    text-align: center;
    margin-bottom: 40px;
}

.campaigns-header h4 {
    font-size: 28px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campaigns-header p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.campaigns-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.campaign-item {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.campaign-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(0, 123, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-item:hover::before {
    opacity: 1;
}

.campaign-item:hover {
    border-color: var(--brand);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.2);
}

.campaign-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.icon-wrapper.newspaper {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.icon-wrapper.television {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.icon-wrapper.radio {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.icon-wrapper.social {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.icon-wrapper.community {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.icon-wrapper i {
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.campaign-item:hover .icon-wrapper i {
    transform: scale(1.2);
}

.campaign-item h5 {
    font-size: 18px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.campaign-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.campaign-stats {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    padding: 12px 16px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    position: relative;
    z-index: 1;
}

.campaign-stats .stat {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 4px;
}

.campaign-stats .label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.campaign-impact {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--brand);
}

.impact-statement {
    text-align: center;
}

.impact-statement h5 {
    font-size: 24px;
    color: var(--text);
    margin: 0 0 25px;
    font-weight: 700;
}

.impact-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

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

.impact-item .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
}

.impact-item .description {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.funding-crisis {
    background: rgba(220, 53, 69, 0.05);
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    border-left: 4px solid var(--danger);
}

.funding-crisis h4 {
    font-size: 20px;
    color: var(--danger);
    margin: 0 0 16px;
    font-weight: 600;
}

.funding-crisis p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

/* Solution Implementation Section */
.solution-implementation {
    margin: 60px 0;
}

.implementation-header {
    text-align: center;
    margin-bottom: 50px;
}

.implementation-header h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}

.implementation-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.implementation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.implementation-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.implementation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.implementation-card:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
}

.implementation-card h4 {
    font-size: 24px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
    text-align: center;
}

.implementation-card p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
    text-align: center;
}

.implementation-card p:last-child {
    margin-bottom: 0;
}

/* Historical Context Section */
.historical-context {
    margin: 60px 0;
    background: var(--light);
    border-radius: 16px;
    padding: 40px;
}

.context-content h3 {
    font-size: 28px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
}

.context-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.reality-challenge-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.reality-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid var(--danger);
    transition: all 0.3s ease;
}

.reality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.reality-card h4 {
    font-size: 22px;
    color: var(--danger);
    margin: 0 0 20px;
    font-weight: 600;
}

.reality-card p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.reality-card p:last-child {
    margin-bottom: 0;
}

.challenge-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.challenge-card h4 {
    font-size: 22px;
    color: #e0a800;
    margin: 0 0 20px;
    font-weight: 600;
}

.challenge-card p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.challenge-card p:last-child {
    margin-bottom: 0;
}

.time-warning {
    font-size: 18px;
    color: var(--danger);
    font-weight: 700;
    text-align: center;
    margin: 20px 0 0;
    padding: 16px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0 20px; }
.card { background: white; border: 1px solid rgba(0,0,0,.1); border-radius: 16px; padding: 24px; transition: all .3s ease; box-shadow: var(--shadow); }
.card:hover { transform: translateY(-5px); border-color: var(--brand); box-shadow: var(--shadow-lg); }
.card h3 { margin: 0 0 8px; font-size: 18px; color: var(--text); font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* Responsive Design */
@media (max-width: 1024px) {
    .crisis-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .crisis-images {
        grid-template-columns: 1fr;
    }
    .crisis-stats {
        justify-content: center;
    }
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .crisis-section,
    .solution-section {
        padding: 60px 0;
    }
    
    .crisis-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .crisis-text h3 {
        font-size: 24px;
    }
    
    .crisis-text p {
        font-size: 15px;
    }
    
    .crisis-stats {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
    }
    
    .crisis-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .crisis-images img {
        height: 250px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-header h2 {
        font-size: 28px;
    }
    .solution-header p {
        font-size: 16px;
    }
    .solution-call {
        padding: 24px;
    }
    .call-content h3 {
        font-size: 24px;
    }
    .urgent-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-box {
        padding: 20px;
    }
    .stat-number {
        font-size: 28px;
    }
    .challenge-content h3 {
        font-size: 24px;
    }
    .awareness-campaigns {
        padding: 24px;
    }
    .campaigns-header h4 {
        font-size: 24px;
    }
    .campaigns-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .campaign-item {
        padding: 20px 15px;
    }
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .icon-wrapper .icon {
        font-size: 28px;
    }
    .campaign-impact {
        padding: 24px;
    }
    .impact-statement h5 {
        font-size: 20px;
    }
    .impact-numbers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .funding-crisis {
        padding: 24px;
    }
    .implementation-header h3 {
        font-size: 28px;
    }
    .implementation-header p {
        font-size: 16px;
    }
    .implementation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .implementation-card {
        padding: 30px;
    }
    .implementation-card h4 {
        font-size: 20px;
    }
    .historical-context {
        padding: 24px;
    }
    .context-content h3 {
        font-size: 24px;
    }
    .reality-challenge-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reality-card {
        padding: 24px;
    }
    .challenge-card {
        padding: 24px;
    }
    .monitoring-grid h4 {
        font-size: 20px;
    }
    .activity-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .activity-card {
        padding: 20px;
    }
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .strategy-item {
        padding: 30px 20px;
    }
    .strategy-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 620px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .activity-cards {
        grid-template-columns: 1fr;
    }
    .activity-card {
        padding: 16px;
    }
    .campaigns-showcase {
        grid-template-columns: 1fr;
    }
    .campaign-item {
        padding: 20px;
    }
    .mission-section {
        padding: 30px 0;
    }
    .mission-content h2 {
        font-size: 28px;
    }
    .mission-content p {
        font-size: 16px;
    }
    .issues-section {
        padding: 60px 0;
    }
    .issue-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    .issue-content {
        padding: 24px;
    }
    .issue-content h3 {
        font-size: 28px;
    }
    .issue-image img {
        height: 300px;
    }
    .right-content {
        direction: ltr;
    }
    .right-content .issue-content {
        direction: ltr;
    }
    .left-content .issue-image,
    .right-content .issue-image {
        transform: none;
        border-radius: 16px;
    }
    .left-content .issue-image:hover,
    .right-content .issue-image:hover {
        transform: translateY(-4px) scale(1.01);
    }
}
@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* Mission Section */
.mission-section {
    padding: 40px 0;
    background: var(--light);
}

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

.mission-content h2 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 30px;
    font-weight: 700;
}

.mission-content p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

/* Issues Section - Zigzag Layout */
.issues-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.issues-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.02) 0%, transparent 50%, rgba(40, 167, 69, 0.02) 100%);
    pointer-events: none;
}

.issue-item {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.issue-item:last-child {
    margin-bottom: 0;
}

.issue-content {
    padding: 40px;
}

.issue-content h3 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
}

.issue-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.issue-content p:last-of-type {
    margin-bottom: 30px;
}

.issue-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* Zigzag Image Effects */
.left-content .issue-image {
    transform: rotate(-2deg) translateY(20px);
    border-radius: 20px 16px 16px 20px;
}

.right-content .issue-image {
    transform: rotate(2deg) translateY(-20px);
    border-radius: 16px 20px 20px 16px;
}

.left-content .issue-image:hover {
    transform: rotate(-1deg) translateY(10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.right-content .issue-image:hover {
    transform: rotate(1deg) translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.issue-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(0, 123, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.left-content .issue-image::before {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
}

.right-content .issue-image::before {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(0, 123, 255, 0.1));
}

.issue-image:hover::before {
    opacity: 1;
}

.issue-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.read-more-btn {
    display: inline-block;
    background: var(--brand);
    color: white;
    border: 2px solid #28a745;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.read-more-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    border-color: #20c997;
}

/* Left Content Layout (Content Left, Image Right) */
.left-content {
    direction: ltr;
}

/* Right Content Layout (Image Left, Content Right) */
.right-content {
    direction: rtl;
}

.right-content .issue-content {
    direction: ltr;
    text-align: left;
}

/* Sections */
section { padding: 60px 0; }
section:nth-child(even) { background: var(--light); }
section .section-head { margin-bottom: 40px; text-align: center; }
section h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 36px); color: var(--text); font-weight: 700; }
section p.lead { color: var(--muted); margin: 0; font-size: 18px; max-width: 600px; margin: 0 auto; }

/* Gallery rows */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 12px; border: 2px solid var(--brand); transition: transform .2s ease; }
.gallery img:hover { transform: scale(1.05); }
@media (max-width: 1100px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery img { height: 100px; } }

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: 30px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.brand-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 3px solid var(--brand);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--brand), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 30px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    border-color: var(--brand);
}

.social-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--brand);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.footer-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--brand);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(0, 123, 255, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    position: relative;
    z-index: 1;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h4 {
    font-size: 24px;
    color: white;
    margin: 0 0 12px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.form-group {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    background: transparent;
    outline: none;
    color: var(--text);
}

.form-group input::placeholder {
    color: var(--muted);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--brand), #20c997);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.emergency-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 1;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.emergency-text {
    flex: 1;
}

.emergency-text h5 {
    font-size: 20px;
    color: white;
    margin: 0 0 8px;
    font-weight: 700;
}

.emergency-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.emergency-btn {
    background: white;
    color: #ff6b6b;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-style: italic;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand-section {
        grid-column: 1 / -1;
        max-width: none;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-form {
        max-width: none;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-section .footer-title {
        text-align: center;
    }

    .footer-section .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item:hover {
        transform: translateY(-2px);
    }

    .contact-details {
        align-items: center;
        text-align: center;
    }

    .brand-description {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .newsletter-text h4 {
        font-size: 20px;
    }
    
    .newsletter-text p {
        font-size: 14px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .newsletter-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .emergency-text h5 {
        font-size: 18px;
    }
    
    .emergency-text p {
        font-size: 14px;
    }
    
    .emergency-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .brand-description {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .footer-newsletter {
        padding: 30px 20px;
    }
    
    .emergency-banner {
        padding: 20px;
    }
    
    .emergency-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* Rapid-Response Centers Section - Creative Design */
.rapid-response-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.rapid-response-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Hero Section */
.response-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 50px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card.urgent .stat-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    padding: 24px 32px;
    border-radius: 16px;
    margin-top: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.hero-callout i {
    font-size: 24px;
    color: #ffc107;
    flex-shrink: 0;
}

.hero-callout p {
    font-size: 18px;
    color: white;
    margin: 0;
    font-weight: 600;
}

/* Strategy Showcase */
.strategy-showcase {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.strategy-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategy-header h3 {
    font-size: 36px;
    color: white;
    margin: 0 0 24px;
    font-weight: 700;
}

.strategy-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.map-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.map-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(0, 123, 255, 0.05));
    pointer-events: none;
}

.map-container {
    position: relative;
    z-index: 1;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.header-content h4 {
    font-size: 24px;
    color: white;
    margin: 0 0 8px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.center-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.map-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 500px;
}

.map-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.response-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.map-visual:hover .response-map {
    transform: scale(1.05);
}

.map-overlay {
    display: none;
}

.overlay-content {
    display: none;
}

.center-dots {
    display: none;
}

.center-dot {
    display: none;
}

.map-legend {
    display: none;
}

.legend-item {
    display: none;
}

.legend-dot {
    display: none;
}

.map-description {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    z-index: 1;
    position: relative;
}

.description-content {
    width: 100%;
}

.description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.description-header h5 {
    font-size: 22px;
    color: white;
    margin: 0;
    font-weight: 700;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 30px;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h6 {
    font-size: 14px;
    color: white;
    margin: 0 0 4px;
    font-weight: 700;
}

.feature-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.coverage-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 16px;
    padding: 20px;
}

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

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.capability-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.capability-card:hover .card-icon {
    transform: scale(1.1);
}

.card-header h4 {
    font-size: 20px;
    color: white;
    margin: 0;
    font-weight: 700;
}

.capability-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 20px;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.staff-count, .comm-feature, .ops-feature, .transport-feature {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Monitoring Showcase */
.monitoring-showcase {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.monitoring-header {
    text-align: center;
    margin-bottom: 60px;
}

.monitoring-header h3 {
    font-size: 36px;
    color: white;
    margin: 0 0 20px;
    font-weight: 700;
}

.monitoring-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.benefit-visual {
    position: relative;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(40, 167, 69, 0.3);
    animation: benefitPulse 2s infinite;
}

@keyframes benefitPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.benefit-content h4 {
    font-size: 20px;
    color: white;
    margin: 0 0 12px;
    font-weight: 700;
}

.benefit-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 16px;
}

.benefit-tag {
    display: inline-block;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Showcase */
.action-showcase {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.action-hero {
    text-align: center;
    margin-bottom: 60px;
}

.action-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.action-hero h3 {
    font-size: 36px;
    color: white;
    margin: 0 0 20px;
    font-weight: 700;
}

.action-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.action-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.metric-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.metric-visual {
    margin-bottom: 24px;
}

.metric-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-circle {
    transform: scale(1.1);
}

.metric-number {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.metric-card h4 {
    font-size: 18px;
    color: white;
    margin: 0 0 12px;
    font-weight: 700;
}

.metric-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.collaboration-note {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    padding: 32px;
    margin-top: 40px;
}

.note-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 20px;
    color: white;
    margin: 0 0 12px;
    font-weight: 700;
}

.note-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }
    
    .map-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .center-badge {
        align-self: center;
    }
    
    .description-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .map-visual {
        height: 400px;
    }
    
    .action-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rapid-response-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .strategy-header h3,
    .monitoring-header h3,
    .action-hero h3 {
        font-size: 28px;
    }
    
    .map-showcase {
        padding: 24px;
    }
    
    .map-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 24px;
    }
    
    .collaboration-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-badge,
    .action-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .hero-callout {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .metric-card {
        padding: 30px 20px;
    }
    
    .metric-circle {
        width: 80px;
        height: 80px;
    }
    
    .metric-number {
        font-size: 20px;
    }
    
    .map-visual {
        height: 300px;
    }
}

/* Investment Section */
.investment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.investment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.investment-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.investment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.investment-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-subtitle {
    font-size: 20px;
    color: var(--muted);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.financial-overview {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.overview-card.initial::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.overview-card.monthly::before {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.overview-card.impact::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.overview-card.initial .card-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.overview-card.monthly .card-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.overview-card.impact .card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.overview-card:hover .card-icon {
    transform: scale(1.1);
}

.card-header h3 {
    font-size: 24px;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.card-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    color: var(--brand);
    font-weight: 700;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.period {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.feature-item i {
    color: var(--brand);
    font-size: 16px;
}

.detailed-breakdown {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.breakdown-header {
    text-align: center;
    margin-bottom: 60px;
}

.breakdown-header h3 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.breakdown-header p {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.breakdown-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.breakdown-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(40, 167, 69, 0.1);
}

.section-header h4 {
    font-size: 24px;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.cost-item:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.cost-category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
}

.cost-category i {
    color: var(--brand);
    font-size: 16px;
}

.cost-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cost-description {
    font-size: 12px;
    color: var(--muted);
}

.cost-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
}

.cost-total {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(0, 123, 255, 0.1));
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.total-line:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 2px solid rgba(40, 167, 69, 0.2);
    font-weight: 700;
}

.total-label {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}

.total-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
}

.setup-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.setup-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.setup-item:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.setup-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.setup-content h5 {
    font-size: 16px;
    color: var(--text);
    margin: 0 0 4px;
    font-weight: 700;
}

.setup-content p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

.setup-total {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(0, 123, 255, 0.1));
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(40, 167, 69, 0.2);
    text-align: center;
}

.total-investment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.investment-label {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}

.investment-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand);
}

.investment-note {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    font-style: italic;
}

.impact-visualization {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.visualization-header {
    text-align: center;
    margin-bottom: 60px;
}

.visualization-header h3 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.visualization-header p {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(135deg, #28a745, #20c997);
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.timeline-content h4 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.timeline-metric {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-to-action-financial {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.3);
}

.call-to-action-financial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 36px;
    color: white;
    margin: 0 0 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(40, 167, 69, 0.5);
}

.call-to-action-financial .btn-primary {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    border-color: #e91e63;
}

.call-to-action-financial .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6);
    background: linear-gradient(135deg, #f06292, #e91e63);
    border-color: #f06292;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: white;
    color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .investment-section {
        padding: 60px 0;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overview-card {
        padding: 30px 20px;
    }
    
    .breakdown-section {
        padding: 30px 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .call-to-action-financial {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .investment-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .investment-title {
        font-size: 24px;
    }
    
    .investment-subtitle {
        font-size: 16px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* News Page Styles */
.news-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.news-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.news-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.news-hero .hero-title {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.news-hero .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-categories {
    padding: 40px 0;
    background: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-btn:hover,
.category-btn.active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.featured-news {
    padding: 80px 0;
    background: white;
}

.news-grid-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-grid-section .section-header h2 {
    font-size: 36px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
}

.news-grid-section .section-header p {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.main-featured {
    grid-row: 1 / 3;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.article-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.main-featured .article-image {
    height: 400px;
}

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

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-badge i {
    color: var(--brand);
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.article-category {
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    font-size: 14px;
    color: var(--muted);
}

.article-title {
    font-size: 24px;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.3;
}

.secondary-featured .article-title {
    font-size: 18px;
}

.article-excerpt {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

.article-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.article-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
}

.article-stats .stat i {
    font-size: 16px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(5px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.news-grid-section {
    padding: 80px 0;
    background: var(--light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-category {
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-date {
    font-size: 12px;
    color: var(--muted);
}

.card-title {
    font-size: 18px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}

.card-author i {
    color: var(--brand);
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid var(--brand);
    color: var(--brand);
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand), #20c997);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.signup-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.signup-text h3 {
    font-size: 28px;
    color: white;
    margin: 0 0 12px;
    font-weight: 700;
}

.signup-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.signup-form {
    flex: 1;
    max-width: 400px;
}

.signup-form .form-group {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.signup-form input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    background: transparent;
    outline: none;
    color: var(--text);
}

.signup-form input::placeholder {
    color: var(--muted);
}

.signup-btn {
    background: var(--brand);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .main-featured {
        grid-row: auto;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .signup-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .signup-form {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 100px 0 60px;
    }
    
    .featured-news,
    .news-grid-section,
    .newsletter-signup {
        padding: 60px 0;
    }
    
    .categories-nav {
        gap: 12px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .secondary-featured .article-title {
        font-size: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .signup-form .form-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .signup-form input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .signup-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-hero .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .news-hero .hero-title {
        font-size: 24px;
    }
    
    .news-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .categories-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .article-image {
        height: 200px;
    }
    
    .main-featured .article-image {
        height: 250px;
    }
    
    .article-content {
        padding: 16px;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .article-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .signup-text h3 {
        font-size: 24px;
    }
    
    .signup-text p {
        font-size: 14px;
    }
}

/* Topic Pages Styles */
.topic-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.topic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 53, 69, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.topic-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.topic-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.topic-hero .hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: white;
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.2;
}

.topic-hero .hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.topic-content {
    padding: 80px 0;
    background: var(--light);
}

.content-wrapper {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.main-content {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 24px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--brand);
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 24px;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.1));
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--brand);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 18px;
    color: var(--text);
    margin: 0 0 8px;
    font-weight: 700;
}

.stat-info p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.cause-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--brand);
}

.cause-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
}

.cause-card h3 {
    font-size: 18px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
}

.cause-card p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

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

.impact-item {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--brand);
}

.impact-item h4 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
}

.impact-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-item li {
    font-size: 16px;
    color: var(--muted);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.impact-item li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 14px;
}

.case-study-box {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(40, 167, 69, 0.05));
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(40, 167, 69, 0.2);
    margin-top: 30px;
}

.case-study-header {
    background: var(--brand);
    color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-header i {
    font-size: 24px;
}

.case-study-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.case-study-content {
    padding: 30px;
}

.case-study-content p {
    margin-bottom: 16px;
}

.case-study-content h4 {
    font-size: 18px;
    color: var(--text);
    margin: 24px 0 16px;
    font-weight: 700;
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.case-study-content li {
    font-size: 16px;
    color: var(--muted);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.case-study-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 16px;
}

.urgent-note {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.urgent-note i {
    color: #dc3545;
    font-size: 20px;
    margin-top: 2px;
}

.urgent-note strong {
    color: #dc3545;
}

.solutions-list {
    margin-top: 30px;
}

.solution-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.solution-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.solution-content h3 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 12px;
    font-weight: 700;
}

.solution-content p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

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

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    border-color: var(--brand);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.benefit-card i {
    color: var(--brand);
    font-size: 24px;
}

.benefit-card p {
    margin: 0;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, var(--brand), #20c997);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 32px;
    color: white;
    margin: 0 0 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: white;
    border-color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--brand);
    transform: translateY(-3px);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(40, 167, 69, 0.2);
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-link:hover {
    background: var(--brand);
    color: white;
    transform: translateX(5px);
    border-color: var(--brand);
}

.related-link i {
    color: var(--brand);
    font-size: 18px;
    transition: color 0.3s ease;
}

.related-link:hover i {
    color: white;
}

.emergency-widget {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    text-align: center;
}

.emergency-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.emergency-icon i {
    font-size: 32px;
    color: white;
}

.emergency-widget p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px;
}

.emergency-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.emergency-number:hover {
    text-decoration: underline;
}

.emergency-note {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .topic-hero {
        padding: 120px 0 60px;
    }
    
    .topic-content {
        padding: 60px 0;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .content-section h2 {
        font-size: 26px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .stats-highlight {
        grid-template-columns: 1fr;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 24px;
    }
    
    .cta-section h3 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .topic-hero .hero-title {
        font-size: 28px;
    }
    
    .topic-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .main-content {
        padding: 24px 16px;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-header {
        padding: 16px 20px;
    }
    
    .case-study-content {
        padding: 20px;
    }
    
    .solution-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .emergency-number {
        font-size: 24px;
    }
}

.crisis-section .crisis-stats .stat-number { color: var(--danger); }
.crisis-section .crisis-stats .stat-label { color: var(--text); }

/* Utilities */
.muted { color: var(--muted); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { background: rgba(40, 167, 69, 0.1); padding: 8px 12px; border-radius: 999px; font-size: 13px; color: var(--brand); border: 1px solid rgba(40, 167, 69, 0.2); font-weight: 500; }
