:root {
            --primary-color: #4e73df;
            --secondary-color: #1cc88a;
            --dark-color: #5a5c69;
            --light-color: #f8f9fc;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            background-color: var(--light-color);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
        }
        /*
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #224abe 100%);
            color: white;
            padding: 5rem 0;
        }
        */
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Psychologists Section */
.psychologist-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0; /* <-- Important : on retire le padding ici */
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.psychologist-card:hover {
    transform: translateY(-5px); /* Animation au survol */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Ombre plus marquée au survol */
}

/* Image container pour donner des coins arrondis */
.image-container {
    width: 200px; /* Réduction possible pour responsive */
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;               /* Centrer l'image */
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Card title et description 
.row.g-4 {
    gap: 2rem; /* Ajout d'un gap entre les colonnes pour espacer davantage */
}*/

/* Autres styles pour centrer le texte et ajuster le design */
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;     /* Centrage horizontal de tous les éléments */
    text-align: center;      /* Centrage du texte à l'intérieur */
    flex-grow: 1;
    padding: 20px;
}
.card-body .btn {
    margin-bottom: 10px; /* Espace fixe */
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px; /* Coins arrondis pour les boutons */
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .psychologist-card {
        margin-bottom: 1.5rem;
    }
}

        footer {
            background: linear-gradient(135deg, var(--primary-color) 0%, #224abe 100%) !important;
            color: white !important;
            padding: 3rem 0;
          }

  /* Force le texte en blanc pour tous les éléments du footer */
          footer,
          footer *:not(.btn) {
            color: white !important;
          }

          /* Style des liens */
          footer a {
            color: white !important;
            text-decoration: none;
            transition: opacity 0.3s;
          }

          footer a:hover {
            opacity: 0.8;
            text-decoration: underline;
          }

          /* Style spécifique pour les boutons */
          footer .btn-outline-light {
            color: white !important;
            border-color: white;
          }

          footer .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
          }

          /* Séparateur */
          footer hr {
            background-color: rgba(255, 255, 255, 0.2) !important;
          }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            
            .display-4 {
                font-size: 2.5rem;
            }
        }