/* Styles spécifiques pour la page des services */

/* Hero Section for Services Page */
.hero-services {
    position: relative;
    padding-top: 115px;
    padding-bottom: 50px;
    background: url('../images/about-bg.webp') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.hero-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(1, 29, 56, 0.85), rgba(0, 78, 152, 0.75));
    z-index: 1;
}

.hero-services .container {
    position: relative;
    z-index: 2;
}

.hero-services .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-services .hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* La section des services utilise les styles de style.css */
/* Aucun style supplémentaire n'est nécessaire si la structure est identique */

/* CTA Section on Services Page */
#particles-js-services {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Assurer que le contenu du CTA est au-dessus des particules */
.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .hero-services {
        padding: 100px 0;
    }

    .hero-services .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-services .hero-content p {
        font-size: 1.1rem;
    }
}
