
/* Hero section pour les pages de services */
.service-hero {
    background: linear-gradient(135deg, #0a3e95, #89a6cd);
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section des détails du service */
.service-details {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.service-details h2 {
    font-size: 2rem;
    color: #0a3e95;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-details ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.service-details li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.service-details li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #0a3e95;
    margin-right: 10px;
}

.service-details p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* Section CTA */
.cta-section {
    background-color: #0a3e95;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #ffd66e;
    color: #0a3e95;
    padding: 12px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-section .btn-primary:hover {
    background-color: #ffce40;
}

/* Responsive design */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero p {
        font-size: 1rem;
    }

    .service-details h2 {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}