.hero {
    position: relative;
    height: 520px;
    background-color: #003366;
    background-image: url('../../../media/images/home_page_Image.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #1b81e731, #003366e6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--color-accent);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--color-primary);
}


@media (min-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero {
        height: 520px;
    }

    .hero h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }
}
