/* --- STYLES POUR LA PAGE SERVICES --- */

.page-header {
    background-color: #f4f7f6;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.services-details {
    margin-bottom: 80px;
}

/* Grille pour aligner les 3 services */
.service-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Design de chaque carte de service */
.service-card-detail {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Style des icônes */
.service-icon {
    font-size: 3em;
    color: #0056b3; /* Modifiez cette couleur pour correspondre à votre logo */
    margin-bottom: 20px;
}

.service-card-detail h3 {
    color: #222;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.service-card-detail p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Style des petits boutons dans les cartes */
.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    color: #0056b3;
    border: 2px solid #0056b3;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #0056b3;
    color: #ffffff;
}