* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* ================= HERO ================= */
.hero {
    height: 320px;
    margin-top: 115px; /* Clear fixed header */
    background: radial-gradient(circle at left, #0a4fa3, #030d3d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero h1 {
    position: relative;
    color: white;
    font-size: 46px;
    font-weight: 700;
}

.hero span {
    color: #ff9800;
}

/* ================= GRID ================= */
.support-container {
    padding: 70px 90px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    background: #f7f8ff;
}

/* ================= CARD ================= */
.support-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #e4e6ff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: #6a5cff;
    box-shadow: 0 18px 35px rgba(106,92,255,0.3);
}

.support-card img {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 18px;
}

.support-card h3 {
    font-size: 16px;
    color: #2c1a63;
    font-weight: 600;
    line-height: 1.4;
}

/* ================= FOOTER ================= */
.footer {
    background: #1c1c1c;
    color: #bbb;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero {
        height: 220px;
        margin-top: 105px;
    }
    
    .hero h1 {
        font-size: 28px;
        text-align: center;
        padding: 0 20px;
    }
    
    .support-container {
        padding: 40px 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .support-card {
        padding: 20px 15px;
    }
    
    .support-card img {
        height: 60px;
    }
    
    .support-card h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 180px;
        margin-top: 100px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .support-container {
        grid-template-columns: 1fr;
    }
}
