.hero-header-be035d1e {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    overflow: hidden;
    background-color: #0E2647;
}

.hero-header-be035d1e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14,38,71,0.9) 0%, rgba(14,38,71,0.4) 100%);
    z-index: 1;
}

.hero-content-be035d1e {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin-left: 5%;
}

.hero-header-be035d1e-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: sans-serif;
}

.hero-header-be035d1e-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ffffff;
    max-width: 600px;
    font-family: sans-serif;
}

.hero-actions-be035d1e {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-be035d1e {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    font-family: sans-serif;
}

.btn-primary-be035d1e {
    background-color: #FCE053;
    color: #0E2647;
    border: 2px solid transparent;
}
.btn-primary-be035d1e:hover {
    opacity: 0.9;
}

.btn-secondary-be035d1e {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.btn-secondary-be035d1e:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .hero-header-be035d1e-title {
        font-size: 2.5rem;
    }
    .hero-actions-be035d1e {
        flex-direction: column;
    }
    .hero-btn-be035d1e {
        width: 100%;
    }
    .hero-content-be035d1e {
        margin-left: 0;
    }
}