/* ✅ Police texte SEULEMENT - préserve Font Awesome */
body, p, h1, h2, h3, h4, h5, h6, a, span:not(.fa), div:not(.fa) {
    font-family: 'Raleway', 'Segoe UI', Arial, sans-serif !important;
}

html {
        margin: 0;
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
        font-family: 'Raleway', sans-serif;
       /*font-family: 'Segoe UI', Arial, sans-serif;*/
            background-color: #fdfdfd;;
            background: #f4f8fb;
        scroll-behavior: smooth;
    }

/* Ancre invisible mais fonctionnelle */
.top-anchor {
    display: block;
    height: 0;
    visibility: hidden;
}

/* Liens bien visibles */
.btn-savoir-plus {
    display: inline-block;
    padding: 12px 24px;
    background: #3a8ca8;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-savoir-plus:hover {
    background: #27647a;
    transform: translateY(-2px);
}

/* Taille IDENTIQUE pour TOUTES les images de service */
.img-service-uniforme {
    width: 290px !important;      /* Largeur fixe */
    height: 160px !important;     /* Hauteur fixe */
    object-fit: cover;            /* Remplit sans déformer */
    object-position: top;      /* Centre l'image */
    border-radius: 12px;          /* Coins arrondis uniformes */
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.img-service-uniforme:hover {
    transform: scale(1.05);       /* Zoom léger au survol */
}

/* Section uniforme */
.service-card {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Container principal optimisé */
@media (max-width: 768px) {
    .img-service-uniforme {
        width: 250px !important;
        height: 160px !important;
        margin: 0 auto 1rem;
    }
}

.titre-principal {
    font-size: 0.90rem;      /* ou adapté, mais en unités relatives */
    white-space: normal;    /* permet le retour à la ligne */
    word-wrap: break-word;  /* casse si besoin sur petits écrans */
}

.nom-praticien {
    /*color: #007bff;*/    /* bleu bootstrap, modifiable */
    color: #0056b3;
    font-size: 0.76rem;
}

.size-metier {
    /* color:rgb(32, 159, 218);*/    /* bleu bootstrap, modifiable */
    /* color: #3a8ca8;*/
    color: #4a8bdf;
    font-size: smaller;  
}

.size-coordonnees {
    color: #178582;
    font-size: smaller; 
}
.cookie-consent-banner {
    position: fixed; bottom: 0; left: 0; width: 100%; background: #F5F5F5; /* white smoke */
    color:  #4a8bdf; /* bleu */
    padding: 15px; text-align: center; z-index: 1000; box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.url-rgpd {
    color: #007BFF; 
    text-decoration: underline; 
    font-weight: bold;
}

.accept-cookies-btn {
    margin-left: 15px; 
    padding: 5px 10px; 
    background-color: #007BFF; 
    border: none; 
    color: white; 
    cursor: pointer; 
    border-radius: 3px;
}

.delete-cookies-btn {
    margin-left: 10px;
    padding: 5px 10px; 
    background-color: #ccc;
    border: none; 
    color: #333; 
    cursor: pointer; 
    border-radius: 3px;
}

.ligne-copyright {
    bottom: 1rem;
    color: #f1f1f1;    /* bleu bootstrap, modifiable */
    font-size: 0.71rem;
    text-align: center;
}

.ligne-mlegales-rgpd {
    bottom: 1rem;  
    color: #f1f1f1;    /* bleu bootstrap, modifiable */
    font-size: 0.71rem;
    text-align: center;
}

.webmaster-footer {
    position: fixed;        /* Fixe par rapport à la fenêtre */
    bottom: 1rem;           /* 1rem du bas */
    right: 1rem;            /* 1rem du bord droit */
    font-size: 0.70rem;
    color: #f1f1f1;
    font-weight: 500;
    z-index: 1000;          /* Par dessus tout */
    white-space: nowrap;    /* Pas de retour à la ligne */
}

/* Responsive : sur mobile, un peu plus petit */
@media (max-width: 768px) {
    .webmaster-footer {
        font-size: 0.8rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }
}

.navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #e6ebf7;            
            padding: 1rem 2rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

.navbar .logo {
            font-size: 1rem;
            font-weight: 550;
            /*color: #3a4b8d;*/
            color: whitesmoke;
        }

.navbar ul {
            list-style: none;
            display: flex;
            gap: 0.85rem;
            margin: 0;
            padding: 0;
        }

.navbar ul li a {
            text-decoration: none;
            text-emphasis-color: white;
            /*color: #3a4b8d;*/
            color: aliceblue;
            font-weight: 500;
            transition: color 0.3s ease;
        }

.navbar ul li a:hover {
            color: darkorange;
        }

.btn-rdv {
            padding: 0.5rem 1rem;
            background-color: #6d5acd;
            color: white;
            border-radius: 6px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        
.btn-rdv:hover {
            background-color: #5848a0;
        }

p { 
  margin-top: 0; 
  margin-bottom: 1rem; 
} 

.lead { 
  font-size: 1.25rem; 
  font-weight: 300; 
} 

.parallax-section {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80');   
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-overlay {
    background: linear-gradient(120deg, #eaf6fa 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 2rem;
}

@media (max-width: 768px) {
    .parallax-section {
        min-height: unset;      /* ✅ Supprime la contrainte 100vh */
        padding: 3rem 1rem;     /* Hauteur gérée par padding + contenu */
        background-attachment: scroll;
        background-position: center top;
        align-items: flex-start; /* Contenu en haut sur mobile */
        padding-top: 4rem;      /* Espace depuis le haut */
    }

    .parallax-overlay {
        margin: 0;              /* Pas de marge latérale/haut sur mobile */
        padding: 1.5rem;
        max-width: 100%;
        border-radius: 0.75rem;
    }
}
  
/* FAQ Section Styling */
.faq-section {
    background: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 40px;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    margin-bottom: 18px;
    background: #fff;
}

.accordion-button {
    font-weight: 500;
    font-size: 1.08rem;
    color: #2c3e50;
    background-color: #fff;
    border: none;
    padding: 1.2rem 1.5rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 2px #3a8ca8;
    outline: none;
}

.accordion-button:not(.collapsed) {
    background-color: #eaf6fa;
    color: #1b4b5a;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%233a8ca8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transform: scale(1.2);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%233a8ca8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
    background: #f6fbfd;
    color: #2c3e50;
    font-size: 1.02rem;
    line-height: 1.7;
    padding: 1.3rem 1.5rem;
    border-top: 1px solid #e1e7ea;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .faq-section h2 {
        font-size: 1.5rem;
    }
    .accordion {
        max-width: 100%;
        padding: 0 8px;
    }
    .accordion-body {
        font-size: 0.98rem;
        padding: 1rem;
    }
}

.jumbotron-quote {
    background: linear-gradient(120deg, #eaf6fa 0%, #f8f9fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem;
    margin: 2.5rem auto;
    max-width: 700px;
    text-align: center;
    position: relative;
}

.jumbotron-quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.jumbotron-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.jumbotron-quote footer {
    font-size: 1.1rem;
    color: #3a8ca8;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Optionnel : Ajout de guillemets décoratifs */
.jumbotron-quote p::before,
.jumbotron-quote p::after {
    content: "“";
    color: #3a8ca8;
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 1;
    font-family: serif;
    opacity: 0.2;
}
.jumbotron-quote p::after {
    content: "”";
    vertical-align: bottom;
}

/* Responsive */
@media (max-width: 600px) {
    .jumbotron-quote {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    .jumbotron-quote p {
        font-size: 1.1rem;
    }
}

.therapist-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    padding: 2rem 2.5rem;
    z-index: 2000;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%);}
    to   { opacity: 1; transform: translate(-50%, -50%);}
}
.therapist-card .close-card {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #3a8ca8;
    cursor: pointer;
}
.card-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #eaf6fa;
}
.logo-navbar {
    height: 48px;
    cursor: pointer;
}

/* Desktop : ok pour 700px */
.custom-carousel .carousel-inner {
    height: 650px; /* hauteur souhaitée */
}

.custom-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile : on laisse respirer, plus d’espace vide */
@media (max-width: 768px) {
    .custom-carousel .carousel-inner {
        height: auto !important;
    }

    .custom-carousel .carousel-item img {
        height: auto !important;
    }
}

/* ✅ CSS ANTI-DISPARITION - REMPLACE TOUT ton CSS précédent */
.two-squares-container {
    display: flex !important;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 2rem); /* Gap adaptatif */
    margin: 2rem auto;
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    min-height: 200px; /* Toujours visible */
}

.square {
    flex: 1 1 0;
    background: #f4f8fb;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: clamp(200px, 40vw, 400px); /* Hauteur adaptative */
}

.square-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.square-text-content {
    padding: clamp(1rem, 5vw, 2rem);
    text-align: center;
}

/* ✅ MOBILE + SIMULATION PC */
@media (max-width: 1200px) {
    .two-squares-container {
        flex-direction: column !important;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .square {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        flex: none !important;
    }
}

/* ✅ Container Bootstrap fix */
@media (max-width: 991px) {
    .container-lg .two-squares-container {
        margin: 1rem 0 !important;
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: calc(50vw - 0.5rem);
        padding-right: calc(50vw - 0.5rem);
    }
}
.two-squares-container,
.row.g-4.align-items-stretch {
    margin-bottom: 2rem;
  /* si tu gardes .two-squares-container pour d'autres sections, OK,
     mais ici on s'appuie surtout sur la grille Bootstrap */
}

/* Cartes */
.square {
  background: #f4f8fb;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.08);
  overflow: visible;         /* <– important */
}

/* Image */
.square-image {
  width: 100%;
  height: 100%;              /* ou une valeur fixe, ex: 100% de la colonne ou 300px */
  overflow: hidden;          /* coupe ce qui dépasse */
}

.square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* l’image remplit le cadre sans se déformer */
  display: block;
}

/* Texte */
.square-text-content {
  display: block;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  padding: 1.5rem 1.5rem 2rem;
  word-wrap: break-word;      /* vieux nom, encore supporté */
  overflow-wrap: break-word;  /* norme actuelle */
}

/* optionnel, pour le texte lui‑même */
.square-text-content p {
  margin: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


/* Responsive : on laisse la hauteur se faire naturellement */
@media (max-width: 1200px) {
  .square {
    height: auto;
    min-height: 0;
  }
}

.container-horaires {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    overflow: hidden;
    }

.horaires-col {
    flex: 1 1 0;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

.horaires-title {
    font-size: 2rem;
    /*color: #3a8ca8;*/
    color: darkblue;
    margin-bottom: 1.2rem;
    }

.horaires-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    margin-bottom: 1rem;
    }

.horaires-table th, .horaires-table td {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    }

.horaires-table th {
    color: #2c3e50;
    text-align: left;
    font-weight: 600;
    }
   
.horaires-table td {
    /*color: #3a8ca8;*/
    color: #3a8ca8;
    text-decoration:none;
    font-weight: 500;
    }

.rdv-info {
    margin-top: 1rem;
    font-size: 1rem;
    }

.rdv-info strong {
    color: #2c3e50;
    }

.image-col {
    flex: 1 1 0;
    background: linear-gradient(135deg, #eaf6fa 60%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    }

.image-col img {
    width: 80%;
    max-width: 270px;
    min-width: 120px;
    filter: drop-shadow(0 2px 12px rgba(44,62,80,0.08));
    }
 
 @media (max-width: 800px) {
      .container-horaires {
           flex-direction: column;
          }
      .image-col {
           padding: 1rem 0;
          }
    }

.parallax-container {
    min-height: 350px;
    /*background-image: url("'/static/images/parallax-1.jpg'");*/
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    }

.bandeau-bienvenue {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 2.5rem 2rem;
    max-width: fit-content;
    /*max-width: 450px;*/
    text-align: center;
    margin: 2rem;
    }

.bandeau-bienvenue h2 {
    color: #3a8ca8;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    }

.bandeau-bienvenue p {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.6;
    }

@media (max-width: 700px) {
      .parallax-container {
       min-height: 220px;
       background-attachment: scroll;
       }

        .bandeau-bienvenue {
            padding: 1.2rem 0.7rem;
            margin: 1rem;
        }

        .bandeau-bienvenue h1 {
            font-size: 1.3rem;
        }

        .bandeau-bienvenue p {
            font-size: 1rem;
        }
    }

.tarifs-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
}

.tarifs-title {
    text-align: center;
    color: #3a8ca8;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.tarifs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tarif-card {
    background: #f4f8fb;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    padding: 2rem 1.5rem;
    flex: 1 1 260px;
    max-width: 320px;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.tarif-card:hover {
    box-shadow: 0 6px 24px rgba(44,62,80,0.13);
}

.tarif-type {
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.tarif-code {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: left;
}

.tarif-prix {
    font-size: 0.9rem;
    color: #3a8ca8;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: right;
}

.tarif-pack {
    font-size: 1.1rem;
    color: #5a6d7c;
    margin-bottom: 0.5rem;
}

.tarif-note {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 1.08rem;
    color: #2c3e50; 
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 900px) {
    .tarifs-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .tarif-card {
        max-width: 100%;
    }
}

.contact-container {
            max-width: 950px;
            margin: 3rem auto;
            padding: 2rem;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(44,62,80,0.10);
        }
        .contact-title {
            text-align: center;
            color: #3a8ca8;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        .contact-form, .contact-info {
            flex: 1 1 320px;
            min-width: 260px;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-form input, .contact-form textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #d2e2ea;
            border-radius: 8px;
            font-size: 1rem;
            background: #f4f8fb;
            transition: border 0.2s;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #3a8ca8;
            outline: none;
        }
        .contact-form button {
            background: #3a8ca8;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 0.9rem 1.5rem;
            font-size: 1.07rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .contact-form button:hover {
            background: #28708a;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            justify-content: flex-start;
        }
        .info-block {
            background: #f4f8fb;
            border-radius: 10px;
            padding: 1.2rem 1rem;
            box-shadow: 0 1px 6px rgba(44,62,80,0.06);
        }
        .info-block strong {
            color: #2c3e50;
            font-size: 1.07rem;
        }
        .info-block a {
            color: #3a8ca8;
            text-decoration: none;
            word-break: break-all;
        }
        .info-block a:hover {
            text-decoration: underline;
        }
        .map-container {
            margin-top: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 8px rgba(44,62,80,0.09);
        }
        @media (max-width: 900px) {
            .contact-grid {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        .about-container {
            max-width: 820px;
            margin: 3rem auto;
            padding: 2.5rem 2rem;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(44,62,80,0.10);
        }
        
        .about-title {
            text-align: center;
            color: #3a8ca8;
            font-size: 2.2rem;
            margin-bottom: 1.8rem;
            letter-spacing: 1px;
        }
        
        .about-photo {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .about-photo img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 2px 12px rgba(44,62,80,0.12);
            border: 4px solid #eaf6fa;
        }
        
        .about-text {
            color: #2c3e50;
            font-size: 1.13rem;
            line-height: 1.7;
            text-align: justify;
            margin-bottom: 1.5rem;
        }
        
        .about-signature {
            text-align: right;
            color: #3a8ca8;
            font-size: 1.08rem;
            font-style: italic;
            margin-top: 1.8rem;
        }
        
        @media (max-width: 700px) {
            .about-container {
                padding: 1.2rem 0.5rem;
            }
            .about-text {
                font-size: 1rem;
            }
        }

        .testimonials-container {
            max-width: 900px;
            margin: 3rem auto;
            padding: 2.5rem 2rem;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(44,62,80,0.10);
        }
        .testimonials-title {
            text-align: center;
            color: #3a8ca8;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        .testimonials-intro {
            text-align: center;
            color: #2c3e50;
            font-size: 1.13rem;
            margin-bottom: 2.2rem;
        }
        .testimonials-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .testimonial-card {
            background: #f4f8fb;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(44,62,80,0.06);
            padding: 1.5rem 1.3rem;
            position: relative;
        }
        .testimonial-quote {
            font-size: 1.08rem;
            color: #2c3e50;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 1.1rem;
            position: relative;
        }
        .testimonial-quote::before, .testimonial-quote::after {
            content: '"';
            color: #3a8ca8;
            font-size: 2rem;
            vertical-align: middle;
        }
        .testimonial-author {
            color: #3a8ca8;
            font-weight: 600;
            font-size: 1.02rem;
            text-align: right;
        }
        @media (max-width: 700px) {
            .testimonials-container {
                padding: 1.2rem 0.5rem;
            }
            .testimonial-card {
                padding: 1.1rem 0.8rem;
            }
            .testimonials-intro {
                font-size: 1rem;
            }
        }
        
.footer-top {
  background-color: #87CEEB;   /* Bleu ciel */
  color: #FFFFFF;
  font-weight: bold;
  padding: 20px 0;
}

.footer-bottom {
  background-color: #007FFF;   /* Bleu azur */
  color: #FFFFFF;
  font-weight: bold;
  /*padding: 10px 0;*/
}

table {
        width: 70%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

th, td {
        border: 1px solid #87CEEB;
        padding: 8px;
        text-align: left;
    }

th {
        background-color: #ddd;        
    }
        
caption {
            caption-side: top;
            font-size: 1.5em;
            margin-bottom: 10px;
        }
        
.note {
            width: 70%;
            font-style: italic;
        }

/* Style du bouton retour en haut */
    #back-to-top {
        position: fixed;
        bottom: 60px;       /* Un peu plus proche du bas */
        right: 20px;        /* Un peu plus proche du bord droit */
        display: none;
        background-color: whitesmoke; /* Fond transparent pour ne garder que la flèche */
        color: #0056b3;     /* Bleu vif pour la flèche */
        border: none;
        outline: none;
        width: 40px;
        height: 40px;
        border-radius: 50%; /* Bouton rond */
        cursor: pointer;
        font-size: 35px;
        z-index: 1000;
        text-align: center;
        line-height: 40px;  /* Centrer verticalement la flèche */
        transition: color 0.3s ease;
    }

    #back-to-top:hover {
        color: #0056b3;     /* Bleu plus foncé au survol */
    }


