/* Réinitialisation des marges et du box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}

/* Par défaut : desktop visible, mobile cachée */
.mobile-section {
  display: none;
}
.desktop-section {
  display: block;
}

/* Sur petit écran (max 768px) : inverse */
@media (max-width: 768px) {
  .mobile-section {
    display: block;
  }
  .desktop-section {
    display: none;
  }
}



/* Pré-bandeau (avant l'en-tête) */
.pre-header {
    width: 100vw;
    height: 10px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.pre-header-section.gray {
    flex: 1;
    background-color: #f1f1f1;
}

.pre-header-section.green-light {
    flex: 1;
    background-color: #f40605;
}

.pre-header-section.green-dark {
    flex: 1;
    background-color: #dd0633;
}


/* En-tête principal */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 15px 5%;
    height: 100px;
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Conteneur principal */
.header-container {
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 1200px;
    justify-content: space-between;
}

a[href^="tel:"] {
    text-decoration: none;
}

/* Logo */
.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 70px;
    width: auto;
}

/* MENU NAVIGATION */
.nav-container {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-container ul {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.nav-container ul li {
    position: relative;
    text-align: center;
}

.nav-container ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    font-family: "Arial", sans-serif;
    transition: color 0.3s ease;
}

/* Changement de couleur au survol */
.nav-container ul li a:hover {
    color: #f40605;
}

/* ----- DROPDOWN MENU (Services) ----- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 150px;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
    padding: 10px 0;
}

.dropdown-menu li a {
    color: black;
    font-size: 16px;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease;
}

/* Effet au survol */
.dropdown-menu li a:hover {
    color: #f40605;
}

/* Afficher le menu au survol */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* Bouton Prendre RDV */
.btn {
    background-color: #f40605;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 16px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: #4db010;
}

/* Bouton à droite */
.button-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* MENU BURGER (caché par défaut) */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 10px 5%;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-container img {
        height: 50px;
    }

    .nav-container {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .nav-container ul {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-container ul li {
        list-style: none;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .nav-container.active {
        display: flex;
    }

    .button-container {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    /* Ajustement du menu déroulant en version mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu li {
        text-align: left;
        padding: 10px 15px;
    }
}

/* Conteneur du bouton téléphone */
.phone-number {
    text-decoration: none;
    color: #61ce1a;
    font-weight: bold;
    font-size: 16px;
    margin-left: 15px;
}

/* S'assurer que les éléments sont bien alignés */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Enlever l'espacement supplémentaire entre le bouton téléphone et les autres éléments */
.nav-container ul li a.phone-number {
    margin: 0 10px;
}



/* Galerie */
.gallery {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-top: 80px; /* Ajuste pour éviter de recouvrir l'en-tête */
    display: flex;
    flex-direction: column;
}

/* Conteneur des images */
.gallery-container {
    display: flex;
    flex-grow: 1; /* Prend tout l’espace sauf celui des boîtes */
    transition: transform 0.5s ease-in-out;
}

/* Chaque image avec background image */
.gallery-photo {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Contenu du texte superposé sur les images */
.gallery-text {
    position: absolute; /* Positionne le texte par rapport à la galerie */
    top: 20%; /* Positionne le texte un peu plus haut */
    left: 10%;  /* Position horizontale */
    color: white;
    text-align: left;
    font-family: "Avenir", sans-serif;
    z-index: 10; /* S'assure que le texte soit au-dessus des images */
    width: 80%; /* Ajuste la largeur du texte */
}

/* Titre principal avec chaque mot sur une ligne différente */
.main-title {
    font-size: 100px;
    font-weight: bold;
    margin: 0;
    line-height: 1.1;
}

.main-title span {
    display: block;
}

/* Sous-titre */
.subtitle {
    font-size: 34px;
    margin-top: 15px;
    font-weight: normal;
}

/* Boutons */
.button-container {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn {
       margin-top: 30px;
    text-align: center;
}

.btn-primary {
       display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #f40605;
    border: 2px solid #f40605;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn:hover {
     background-color: white;
    color: #f40605;
}

/* Images de la galerie */
.gallery-photo:nth-child(1) {
    background-image: url('imagesMedivall/photoPoleSante.png');
}

.gallery-photo:nth-child(2) {
    background-image: url('imagesMedivall/imagePoleSante2.JPG');
}

.gallery-photo:nth-child(3) {
    background-image: url('imagesMedivall/imagePoleSante3.JPG');
}




/* Section à propos */
.about-section {
    width: 100%;
    padding: 60px 10%;  /* Espacement à gauche et à droite */
    background-color: #085c69;
    color: #333;
    text-align: left;
    box-sizing: border-box;
    height: calc(100vh - 110px); /* Ajuste la hauteur de la section */
    overflow: auto;  /* Permet de défiler si le contenu dépasse la hauteur */
}



/* Titre de la section À propos */
.about-title {
    font-family: 'Kodchasan', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #085c69;
    text-align: center;
    margin-bottom: 100px; /* Augmente l'espacement sous le titre pour écarter davantage le texte et les images */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}


/* Section À propos */
.about-section {
    width: 100%;
    padding: 60px 10%;
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
    padding-bottom: 80px; /* Ajoute un espace sous la section sans laisser de blanc */
}   

/* Titre */
.about-title {
    font-family: 'Kodchasan', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #f40605;
    text-align: center;
    margin-bottom: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -25px; /* Espacement entre le titre et le rond */
    left: 50%;
    transform: translateX(-50%); /* Centre horizontalement */
    width: 15px; /* Taille du rond */
    height: 15px; /* Taille du rond */
    background-color: #f40605; /* Même couleur que le titre */
    border-radius: 50%; /* Rend l'élément totalement circulaire */
}



/* Conteneur du texte et de l’image */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 40px; /* Ajoute de la marge au-dessus du texte et de l'image pour les abaisser */
}

/* Texte */
.about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

/* Image */
.about-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section Nous recherchons */
.services-section {
    width: 100%;
    padding: 60px 10%;
    background: linear-gradient(90deg, #f40605, #f1f1f1);
    color: white;
    text-align: center;
    position: relative;
    padding-bottom: 80px; /* Ajoute un espace sous la section sans laisser de blanc */
    min-height: calc(100vh - 100px); /* La section prend toute la hauteur de la page moins la hauteur du header */
    display: flex; /* Utilisation de Flexbox pour centrer le contenu verticalement */
    flex-direction: column; /* Organise les éléments en colonne */
    justify-content: center; /* Centre le contenu verticalement */
}

/* Titre de la section */
.services-title {
    font-family: 'Kodchasan', sans-serif;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px; /* Assure-toi que la marge est assez grande */
    text-align: center;
    position: relative; /* Pour positionner le pseudo-élément */
}

/* Nouveau style pour le cercle sous le titre */
.services-title::after {
    content: "";
    position: absolute;
    bottom: -35px; /* Espacement entre le titre et le cercle */
    left: 50%;
    transform: translateX(-50%); /* Centre horizontalement */
    width: 15px; /* Taille du cercle */
    height: 15px; /* Taille du cercle */
    background-color: #FFF; /* Même couleur que le fond du titre */
    border-radius: 50%; /* Rendre l'élément circulaire */
}


/* Conteneur des services */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch; /* Ajustement pour une hauteur uniforme */
    max-width: 900px;
    margin: auto;
}

/* Boîtes de service */
.service-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Hauteur uniforme pour toutes les boîtes */
}

/* Effet au survol */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Titre de chaque spécialité */
.service-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

/* Bouton "Réserver un cabinet" */
.services-button-container {
    margin-top: 40px;
    text-align: center;
}

.services-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #f40605;
    border: 2px solid #f40605;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-button:hover {
    background-color: white;
    color: #f40605
}

/* Responsive */
@media screen and (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .service-box h3 {
        font-size: 18px;
    }
    .services-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}



/* SECTION NOTRE PROJET */
.project-section {
    width: 100%;
    padding: 60px 10%;
    background-color: #ffffff;
    color: #333;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 100px); /* Soustrait la hauteur du header */
}

/* Conteneur principal des titres et du logo */
.project-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center; /* Aligne le logo et le texte verticalement */
    justify-content: flex-start; /* Assure que tout est aligné à gauche */
    width: 100%;
}

/* Conteneur des textes (justifié à gauche) */
.project-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Assure un alignement à gauche */
    justify-content: flex-start; /* Aligne le texte en haut */
    width: 100%; /* Assure que le conteneur prend toute la largeur disponible */
}

/* Sous-titre (1ère ligne) */
.project-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    text-align: left;
}

/* Titre principal (2ème ligne) */
.project-title {
    font-size: 42px;
    font-weight: bold;
    color: #f40605;
    text-align: left;
    max-width: 100%; /* Permet au titre de prendre toute la largeur disponible */
}

/* Logo à droite */
.project-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center; /* Aligne le logo verticalement avec les titres */
}

.project-logo img {
    height: 120px;
    width: auto;
}

/* Conteneur texte + image */
.project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto 0;
    gap: 40px;
}

/* Texte à gauche */
.project-text {
    flex: 1;
    text-align: justify;
    font-size: 18px;
    line-height: 1.6;
}

/* Image à droite */
.project-image {
    flex: 1;
    text-align: center;
}

.project-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bouton "Réserver un cabinet" */
.project-button-container {
    margin-top: 30px;
    text-align: center;
}

.project-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #f40605;
    border: 2px solid #f40605;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-button:hover {
    background-color: white;
    color: #f40605;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .project-header {
        flex-direction: column;
        align-items: center; /* Aligne les éléments verticalement */
        text-align: center; /* Centrer le texte pour petits écrans */
    }

    .project-logo {
        margin-top: 10px;
        align-self: center;
    }

    .project-logo img {
        height: 90px;
    }

    .project-content {
        flex-direction: column;
        text-align: center;
    }

    .project-text {
        text-align: center;
    }

    .project-image {
        text-align: center;
    }
}


.pole-sante-section {
    width: 100%;
    padding: 50px 10% 30px;
    background: #ffffff;
    color: black;
    box-sizing: border-box;

}

.pole-sante-title {
    font-family: 'Kodchasan', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: black;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 100px;
    position: relative;
}

.pole-sante-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(70px);
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
}

.pole-sante-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* Sous-titre + logo */
.resplend-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    text-align: left;
}

.resplend-bullet {
    height: 25px;
    width: auto;
}

.pole-sante-left {
    flex: 1;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.pole-sante-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pole-sante-image {
    width: 60%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pole-sante-button {
    background-color: #27a88b;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    width: 220px;
    text-align: center;
    transition: background 0.3s ease;
}

.pole-sante-button:hover {
    background-color: #dd0636;
}

.pole-sante-button.reserve {
    background-color: #f40605;
}

.pole-sante-button.reserve:hover {
    background-color: #f40605;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .pole-sante-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .pole-sante-left,
    .pole-sante-right {
        width: 100%;
    }

    .resplend-heading {
        justify-content: center;
    }

    .pole-sante-image {
        width: 80%;
    }

    .pole-sante-section {
        padding: 40px 5% 20px;
    }
}



/* Section Contact */
.contact-section {
    width: 100%;
    padding: 50px 10%;
    background-color: white; /* Fond blanc */
    color: black;
    text-align: center;
    height: auto; /* Ajuste la hauteur en fonction du contenu */
}

/* Titre de la section Contact */
.contact-title {
    font-family: 'Kodchasan', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 60px; /* Espacement sous le titre */
    position: relative;
}
.contact-title::after {
    content: "";
    position: absolute;
    bottom: -25px; /* Espacement entre le titre et le losange */
    left: 50%;
    transform: translateX(-50%) rotate(45deg); /* Rotation pour créer un losange */
    width: 15px; /* Taille du losange */
    height: 15px; /* Taille du losange */
    background-color: #000; /* Couleur du losange (même que le titre) */
    border-radius: 50%;
}

/* Sous-titre pour l'adresse et horaires */
.contact-subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Adresse et horaires dans des boîtes blanches avec effet de profondeur */
.contact-address, .contact-hours {
    background-color: white; /* Fond blanc */
    color: black;
    padding: 20px;
    border-radius: 10px; /* Arrondir les coins */
    width: 45%;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre pour créer l'effet de creux */
    transition: box-shadow 0.3s ease-in-out; /* Effet de transition pour l'ombre */
}

/* L'ombre devient plus marquée au survol */
.contact-address:hover, .contact-hours:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Ombre plus profonde au survol */
}

/* Adresse */
.contact-address {
    text-align: center;
}

/* Horaires d'ouverture */
.contact-hours {
    text-align: center;
}

/* Conteneur de la carte */
.contact-map-container {
    margin-top: 50px; /* Espace supplémentaire entre les informations de contact et la carte */
    margin-bottom: 50px;
}

/* Google Map container */
.contact-map {
    width: 100%;
    height: 400px; /* Hauteur de la carte */
    border-radius: 10px;
    margin-bottom: 50px;
}


/* Footer */

footer {
    background-color: #ffffff;
    padding: 20px 5%;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

/* Conteneur du footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Alignement des sections */
.footer-left, .footer-center, .footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

/* Section à gauche : logos Instagram et Facebook */
.footer-left {
    justify-content: flex-start;
}

.footer-logo {
    width: 25px;
    height: auto;
    margin-right: 15px;
}

/* Section centrale : liens et bouton */
.footer-center {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

/* Styles uniformes pour les liens */
.footer-link {
    font-family: "Kodchasan", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

/* Effet au survol */
.footer-link:hover {
    color: #f40605;

}

/* Logo Resplend à droite */
.footer-logo-container {
    justify-content: flex-end;
}

/* Logo Resplend */
.footer-logo-medivall {
    width: 150px;
    height: auto;
}

/* Section numéro de téléphone */
.footer-phone {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.phone-number {
    font-family: "Kodchasan", sans-serif;
    font-weight: bold;
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

/* Responsivité */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-logo-container {
        flex: 1 1 100%;
        margin: 5px 0;
    }

    .footer-logo-resplend {
        width: 120px;
    }

    .footer-phone {
        margin-top: 10px;
    }

    .footer-link {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
}

/* Mentions légales */
.mentions-legales {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    padding: 40px 20px;
    margin-top: 80px;
}

.mentions-legales h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.mentions-legales p {
    font-size: 16px;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

/* Politique de confidentialité */
.politique-confidentialite {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    padding: 40px 20px;
    margin-top: 80px;
}

.politique-confidentialite h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.politique-confidentialite p {
    font-size: 16px;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}



