.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 8px 10px;
    background: linear-gradient(135deg, #111827, #193e79);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 48px;
    margin-bottom: 16px;
}

.hero-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 2px;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2px 0;
}

.hero-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 2px 0 7px;
}

.hero-tabs {
    display: flex;
    gap: 6px;
    width: 40%;
    margin: 5px 0;
}

.hero-tabs a {
    flex: 1;
    text-align: center;
    padding: 7px 12px;
    border-radius: 7px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.hero-tabs a.active {
    background-color: #357abd;
    color: #fff;
    border-color: #5fa3e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-tabs a:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 5px;
    font-size: 13px;
}

.hero-links a {
    color: white;
    opacity: 0.85;
}

.hero-links a:hover {
    opacity: 1;
}

/* MOBILE */
@media (max-width: 600px) {
    .hero-header {
        margin-top: 48px;
        margin-bottom: 10px;
        padding: 7px 5px 9px;
    }

    .hero-logo {
        max-height: 40px;
    }

    .hero-header h2 {
        font-size: 1.2rem;
    }

    .hero-header h4 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .hero-tabs {
        width: 94%;
        gap: 4px;
        margin: 4px 0;
    }

    .hero-tabs a {
        padding: 7px 4px;
        font-size: 0.82rem;
    }

    .hero-links {
        gap: 12px;
        margin-top: 5px;
        font-size: 11px;
    }
}