.hero-home {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-image: url('/images/imgAcceuil.png');
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 35, 64, 0.82) 0%,
        rgba(15, 35, 64, 0.58) 45%,
        rgba(15, 35, 64, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 600;
}

.hero-home h1 {
    max-width: 760px;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-home p {
    max-width: 680px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #eef4ff;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.intro-section,
.details-section {
    padding: 90px 0;
}

.intro-section {
    background-color: #f5f8fc;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-header h2,
.details-section h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p,
.details-section p {
    color: #516070;
    font-size: 1.08rem;
    line-height: 1.7;
}

.info-card {
    height: 100%;
    padding: 30px;
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.highlight-box {
    padding: 42px;
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

@media (max-width: 991px) {
    .hero-home {
        min-height: 560px;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(15, 35, 64, 0.72);
    }

    .hero-home h1 {
        font-size: 2.5rem;
        margin: auto;
    }

    .hero-home p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}