/* Styles spécifiques à la page services */
.services-hero {
    background-image: url('../imgs/hero/hero-1.jpg');
    background-size:cover; 
    background-position:center; 
    background-repeat:no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin-top: 0;
}
.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}
.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
.service-detail {
    background: white;
    border-radius: 32px;
    margin: 2rem 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}
.service-detail-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
.service-detail-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}
.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.service-detail-image:hover img {
    transform: scale(1.02);
}
.service-detail-content {
    flex: 1;
}
.service-detail-content h2 {
    font-size: 2rem;
    color: #1f1a68;
    margin-bottom: 1rem;
    border-left: 4px solid #a41324;
    padding-left: 1rem;
}
.service-detail-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.service-features {
    list-style: none;
    margin: 1.5rem 0;
}
.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.service-features li i {
    color: #a41324;
    font-size: 1.2rem;
    width: 24px;
}
.btn-service {
    display: inline-block;
    background: #a41324;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.btn-service:hover {
    background: #1f1a68;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .service-detail-container {
        flex-direction: column;
    }
    .services-hero h1 {
        font-size: 2rem;
    }
    .service-detail-content h2 {
        font-size: 1.6rem;
    }
    .service-detail {
        margin: 1rem;
        padding: 1.5rem;
    }
}