
body {
    background: linear-gradient(120deg, #fff7f0 0%, #fdf6ee 100%);
    font-family: 'Poppins', Arial, sans-serif;
}

.covid-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2.5rem;
}
.covid-hero-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.covid-badge {
    background: #fff3e6;
    color: #e67c30;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1.5px solid #ffe0c2;
}
.covid-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #23272a;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.covid-hero-title .highlight {
    color: #ff7a2f;
}
.covid-hero-desc {
    font-size: 1.18rem;
    color: #3a3a3a;
    margin-bottom: 2.2rem;
    max-width: 600px;
}
.covid-hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}
.covid-btn {
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 24px 0 rgba(255,122,47,0.10);
}
.covid-btn-orange {
    background: #ff7a2f;
    color: #fff;
}
.covid-btn-orange:hover {
    background: #e67c30;
}
.covid-btn-outline {
    background: transparent;
    border: 2px solid #ff7a2f;
    color: #ff7a2f;
}
.covid-btn-outline:hover {
    background: #ff7a2f;
    color: #fff;
}
.covid-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.covid-hero-stat {
    text-align: center;
}
.covid-hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff7a2f;
}
.covid-hero-stat .stat-label {
    color: #3a3a3a;
    font-size: 1.1rem;
}
.covid-hero-right {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.covid-hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(255,122,47,0.10);
    object-fit: cover;
}
.covid-status {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    border-radius: 1rem 1rem 1rem 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(255,122,47,0.10);
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #23272a;
    font-size: 1.08rem;
    border-left: 4px solid #ff7a2f;
}
.covid-status-dot {
    width: 12px;
    height: 12px;
    background: #1ec773;
    border-radius: 50%;
    margin-right: 0.7rem;
}
.covid-hero-support {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px 0 rgba(30,199,115,0.10);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    color: #1ec773;
    font-size: 1.5rem;
    border-left: 4px solid #1ec773;
}
.covid-hero-support-label {
    color: #888;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.2rem;
}
@media (max-width: 900px) {
    .covid-hero {
        flex-direction: column;
        gap: 2rem;
        padding: 40px 0 20px 0;
    }
    .covid-hero-left, .covid-hero-right {
        width: 100%;
        max-width: 100vw;
    }
    .covid-hero-img {
        max-width: 95vw;
    }
}
