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


body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #1a2a33;
    background: linear-gradient(135deg, #e3f6fd 0%, #b9e6e6 100%);
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.hero {
    background: linear-gradient(120deg, #f0f7fa 60%, #d0f5e8 100%);
    border-radius: 24px;
    padding: 48px 28px 36px 28px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    margin-bottom: 36px;
    text-align: center;
    border: 1.5px solid #b2dfdb;
}

.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 18px;
    color: #009688;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 1px 2px 8px #e0f2f1;
}

.hero .subtitle {
    font-size: 1.18rem;
    color: #3b4a54;
    margin-bottom: 26px;
    font-weight: 400;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 36px 0 32px 0;
}

.stat-card {
    background: #f7fafc;
    padding: 28px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 5px solid #00bfae;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 191, 174, 0.13);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #009688;
    display: block;
}

.stat-label {
    color: #3b4a54;
    margin-top: 8px;
    font-size: 1.05rem;
}

.content-section {
    background: #f0f7fa;
    margin: 28px 0;
    padding: 32px 22px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border: 1.5px solid #b2dfdb;
}

.content-section h2 {
    color: #00796b;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.content-section p {
    margin-bottom: 13px;
    font-size: 1.08rem;
    text-align: left;
    color: #1a2a33;
}

.affected-sites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.site-card {
    background: #e3f6fd;
    padding: 18px 12px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #00bfae;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,191,174,0.07);
}

.site-card:hover {
    background: #b9e6e6;
    transform: scale(1.04);
}

.site-card h4 {
    margin-bottom: 8px;
    color: #00796b;
    font-weight: 700;
}

.site-card p {
    color: #3b4a54;
    margin-bottom: 8px;
}

.site-card small {
    display: block;
    margin-top: 10px;
}

.site-card small a {
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.site-card small a:hover {
    color: #c0392b !important;
    text-decoration: underline;
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00bfae;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 80px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 0;
    width: 18px;
    height: 18px;
    background: #00bfae;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 191, 174, 0.13);
}

.timeline-date {
    font-weight: bold;
    color: #009688;
    font-size: 1.08rem;
}

.timeline-content {
    background: #e3f6fd;
    padding: 16px;
    border-radius: 8px;
    margin-top: 8px;
}


.alert-box {
    background: linear-gradient(120deg, #fffde7 60%, #e0f7fa 100%);
    color: #00796b;
    padding: 32px 24px 26px 24px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 191, 174, 0.10);
    border: 2.5px solid #00bfae;
    position: relative;
    font-size: 1.13rem;
    font-weight: 500;
    transition: box-shadow 0.3s;
}

.alert-box:hover {
    box-shadow: 0 16px 40px rgba(255, 193, 7, 0.28);
}

.alert-box h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: #009688;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.alert-box h3 .fas.fa-lightbulb {
    font-size: 1.8rem;
    color: #00bfae;
    filter: drop-shadow(0 2px 6px #e0f2f1);
}

.alert-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(120deg, #e0f7fa 60%, #b9e6e6 100%);
    color: #00796b;
    padding: 38px 24px;
    border-radius: 18px;
    text-align: center;
    margin: 36px 0;
    border: 1.5px solid #b2dfdb;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    padding: 13px 26px;
    border: none;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,191,174,0.07);
}

.btn-primary {
    background: #009688;
    color: #fff;
}

.btn-primary:hover {
    background: #00bfae;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 18px rgba(0,191,174,0.13);
}

.footer {
    background: #e0f7fa;
    color: #00796b;
    text-align: center;
    padding: 32px;
    border-radius: 14px;
    margin-top: 32px;
    border: 1.5px solid #b2dfdb;
}

.counter {
    font-size: 2.3rem;
    font-weight: 900;
    color: #009688;
    animation: countUp 2s ease-out;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 10px;
    }
    
    .content-section {
        padding: 25px;
    }
}

.pulsing {
    animation: pulse 2s infinite;
}

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

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.impact-card {
    background: linear-gradient(120deg, #e0f7fa 60%, #b9e6e6 100%);
    padding: 24px 16px;
    border-radius: 12px;
    color: #00796b;
    box-shadow: 0 4px 18px rgba(0,191,174,0.07);
    transition: transform 0.2s;
    border: 1.5px solid #b2dfdb;
}

.impact-card:hover {
    transform: translateY(-4px) scale(1.03);
}

.impact-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
    color: #009688;
    font-weight: 800;
}