/* Hero Section pour les pages internes */
.page-hero {
    background: linear-gradient(rgba(0, 0, 123, 0.7), rgba(0, 0, 123, 0.7)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1558&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
}

.breadcrumb li {
    margin: 0 0.5rem;
}

.breadcrumb li a {
    color: white;
    text-decoration: none;
}

.breadcrumb li:after {
    content: ">";
    margin-left: 1rem;
    color: #e30303;
}

.breadcrumb li:last-child:after {
    content: "";
}

/* Services détaillés */
.service-detail {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail:nth-child(even) .service-image {
    order: 2;
}

.service-detail:nth-child(even) .service-text {
    order: 1;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-text h3 {
    color: #00007b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #e30303;
    margin-right: 0.8rem;
}

/* Process Section */
.process-section {
    background-color: #f0f0f0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: process-counter;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    counter-increment: process-counter;
}

.process-step:before {
    content: counter(process-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #00007b;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.process-step h3 {
    color: #00007b;
    margin: 1.5rem 0 1rem;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 123, 0.8), rgba(0, 0, 123, 0.8)), url('https://images.unsplash.com/photo-1545235617-9465d2a55698?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1780&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* Responsive pour la page Services */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) .service-image {
        order: 1;
    }
    
    .service-detail:nth-child(even) .service-text {
        order: 2;
    }
}