/* Styles supplémentaires pour les pages services et avantages */

/* Styles pour les images héros */
.services-hero, .avantages-hero {
    position: relative;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-hero-image, .avantages-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.services-hero-overlay, .avantages-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.5) 60%, transparent);
    padding: 30px;
    color: white;
}

.services-hero-overlay h2, .avantages-hero-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Styles pour les services détaillés */
.service-detailed, .avantage-detailed {
    display: flex;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-icon, .avantage-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 30px;
}

.service-content, .avantage-content {
    flex: 1;
}

.service-content h3, .avantage-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-content ul, .avantage-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-content li, .avantage-content li {
    margin-bottom: 8px;
}

/* Styles pour les avantages */
.avantage-comparison {
    display: flex;
    margin: 20px 0;
    background-color: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-item {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.comparison-item.highlighted {
    background-color: var(--primary-color);
    color: white;
}

.comparison-value {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

.avantage-highlight {
    background-color: #f0f9f6;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    font-weight: 600;
}

.avantage-example {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.avantage-example h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Styles pour la section légale */
.avantages-legal {
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.legal-content {
    display: flex;
    align-items: flex-start;
}

.legal-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 24px;
}

.legal-text {
    flex: 1;
}

/* Styles pour l'image de Dublin */
.dublin-image {
    margin: 40px 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dublin-street-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.dublin-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 35, 66, 0.7);
    padding: 15px;
    color: white;
    text-align: center;
}

/* Styles pour la boîte CTA */
.cta-box {
    background-color: #f0f9f6;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Styles pour les témoignages */
.testimonial-section {
    margin: 40px 0;
}

.testimonial-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .service-detailed, .avantage-detailed, .legal-content {
        flex-direction: column;
    }
    
    .service-icon, .avantage-icon, .legal-icon {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .services-hero-image, .avantages-hero-image, .dublin-street-image {
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .comparison-item {
        padding: 15px 10px;
    }
    
    .comparison-value {
        font-size: 24px;
    }
}
