.hero-header {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(16, 54, 122, 0.45) 0%, rgba(254, 87, 22, 0.25) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #000000;
    text-align: center;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.highlight-orange {
    color: #D3D3D3;
}

.highlight-blue {
    color: #10367A;
}

.hero-sub {
    font-size: 1.15em;
    margin-bottom: 28px;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #10367A 60%, #D3D3D3 100%);
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.15em;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(16, 54, 122, 0.10);
    transition: background 0.2s, transform 0.15s;
}

.hero-btn:hover {
    background: linear-gradient(90deg, #D3D3D3 60%, #10367A 100%);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 500px) {
    .hero-header {
        height: auto;
        padding: 20px 0;
    }
}