/* Translation Styles pour les pages */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content h2 {
    color: #e63946;
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #e63946;
    border-radius: 2px;
}

.page-content h3 {
    color: #1a2332;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.page-content ul, .page-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
    list-style-position: outside;
}

.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Cartes pour présenter l'équipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.team-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
    border-color: #e63946;
}

.team-card h3 {
    color: #e63946;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    justify-content: center;
}

.team-card .role {
    font-weight: bold;
    color: #1a2332;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.team-card .job {
    color: #666;
    font-size: 1rem;
}

/* Boxes d'info */
.info-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 5px solid #ffc107;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-box h3 {
    margin-top: 0;
    color: #856404;
    justify-content: flex-start;
}

.info-box ul {
    margin-top: 1rem;
    list-style: none;
}

/* Services - Cartes comme l'accueil */
.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-top: 5px solid #e63946;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item h3 {
    margin-top: 0;
    color: #1a2332;
}

.service-item ul {
    margin-top: 1.5rem;
}

.service-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-item li:last-child {
    border-bottom: none;
}

/* Contact - Grille moderne */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card h3 {
    margin-top: 0;
    color: #e63946;
    justify-content: center;
}

/* Numéros d'urgence - Style rouge */
.page-content a[href^="tel:"] {
    font-size: 2rem;
    color: #e63946;
    font-weight: bold;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .page-content h2 {
        font-size: 1.8rem;
    }
    
    .page-content h3 {
        font-size: 1.4rem;
    }
    
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card,
    .contact-card,
    .service-item {
        padding: 1.5rem;
    }
}

