.services-section {
    padding: 50px 0;
    background-color: #fcfcfc; /* Fond très légèrement grisé pour faire ressortir les éléments */
}

/* En-tête de section */
.services-main-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-main-header h2 {
    color: #d19200; /* Ocre jaune institutionnel */
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-header-divider {
    width: 50px;
    height: 2px;
    background-color: #d19200;
    margin: 12px auto 0 auto;
}

/* Grille de 4 colonnes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Structure de la carte service */
.service-card-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    min-height: 360px;
}

/* Formatage de la photo circulaire avec bordure dorée */
.service-image-wrap {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    border: 3px solid #d19200; /* Cercle d'or */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typographies textuelles */
.service-card-title {
    color: #db1f47; /* Rouge magenta/bordeaux vif */
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.service-desc-highlight {
    color: #1c1463; /* Bleu-violet sombre */
    font-size: 13.5px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 8px;
}

.service-desc-text {
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

.service-card-content {
    flex-grow: 1;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Bouton VOIR + orange */
.btn-service-more {
    display: inline-block;
    background-color: #d19200;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 20px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-service-more:hover {
    background-color: #b57e00;
}

/* RESPONSIVE TABLETTE & MOBILE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .service-card-item {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-main-header h2 {
        font-size: 26px;
    }
}
