/* Importation de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Roboto:wght@300;400&display=swap');

:root {
    --text-color: #D4AF37;
    --button-hover: #B8860B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0a0101;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #d8cb85;
    position: relative;
    /* Nécessaire pour positionner le pseudo-élément */
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--background-image);
    /* Reprise de l'image de fond */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    /* Inverse l'image horizontalement */
    z-index: -1;
    /* Place l'image inversée derrière le contenu */
}

.logo {
    display: flex;
    flex-direction: row;
    /* Les éléments seront en ligne */
    align-items: center;
    /* Aligne l'image et le texte verticalement au centre */
}

.logo img {
    max-width: 400px;
    /* Largeur maximale */
    max-height: 400px;
    /* Hauteur maximale */
    width: auto;
    /* Garder les proportions */
    height: auto;
    /* Garder les proportions */
    margin-right: 20px;
    /* Espace entre l'image et le texte */
}

.logo .text {
    display: flex;
    flex-direction: column;
    /* Les éléments (h1 et p) seront empilés verticalement */
    justify-content: center;
    /* Centrer verticalement les éléments à droite */
    margin-top: 70px;
    margin-left: 50px;
}

.logo h1 {
    font-size: 50px;
    margin: 0;
    /* Éviter les marges par défaut autour du titre */
}

.logo p {
    font-size: 30px;
    margin: 0;
    /* Éviter les marges par défaut autour du paragraphe */
}

.boutton {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* Espace entre les boutons */
    justify-content: center;
    /* Centrer les boutons horizontalement */
    padding: 20px;
}

.boutton button {
    background: linear-gradient(45deg, #d8cb85, #D4AF37);
    /* Dégradé doré */
    border: 2px solid var(--text-color);
    /* Bordure dorée */
    border-radius: 50px;
    color: #0a0101;
    /* Texte en blanc pour le contraste */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    /* Police importée */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.boutton button:hover {
    transform: translateY(-5px);
    background: var(--button-hover);
    /* Changement de couleur au survol */
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    /* Ombre dorée */
}

.presentation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    margin-top: 90px;
}

.presentation h2 {
    font-size: 35px;
    color: var(--text-color);
    text-align: left;
    animation: slideInLeft 1s ease-out forwards;
    margin-right: 30px;
}

.presentation p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards 0.5s;
    margin-right: 30px;
    margin-top: 30px;
}

.presentation img {
    max-width: 40%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards 0.8s;
}

/* Disposition de la section avec image à gauche et texte à droite */
.presentation2 {
    display: flex;
    align-items: center;
    /* Aligne verticalement l'image et le texte */
    justify-content: space-between;
    /* Crée un espace entre l'image et le texte */
    padding: 50px;
    /* Espacement autour de la section */
    transform: translateY(50px);
    animation: fadeInUp 2s ease-out forwards;
}

.presentation2 h2 {
    font-size: 35px;
    /* Taille du titre */
    margin-bottom: 20px;
    /* Marge sous le titre */
    animation: slideInLeft 2s ease-out forwards;
    margin-left: 30px;
    color: var(--text-color);
}

.presentation2 p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards 1.5s;
    margin-left: 30px;
    margin-top: 30px;
}

.presentation2 img {
    max-width: 40%;
    /* L'image occupe 50% de la largeur */
    height: auto;
    border-radius: 10px;
    /* Ajoute des coins arrondis à l'image (optionnel) */
    transform: scale(0.9);
    opacity: 0;
    animation: fadeInScale 2s ease-out forwards 1.8s;
}

.presentation3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 3s ease-out forwards;
}

.presentation3 .text-content {
    display: flex;
    flex-direction: column;
    /* Aligne le h2 et le p verticalement */
    justify-content: flex-start;
    /* Aligne les éléments en haut */
    gap: 20px;
    /* Ajoute un espacement entre h2 et p */
}

.presentation3 h2 {
    font-size: 35px;
    color: var(--text-color);
    text-align: left;
    animation: slideInLeft 3s ease-out forwards;
    margin-right: 30px;
}

.presentation3 p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    opacity: 0;
    animation: fadeIn 3.5s ease-out forwards 2.5s;
    margin-right: 30px;
    margin-top: 0;
    /* Enlève la marge du haut du p */
}

.presentation3 img {
    max-width: 40%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    animation: fadeInScale 3s ease-out forwards 2.8s;
}

.presentation4 {
    display: flex;
    align-items: center;
    /* Aligne verticalement l'image et le texte */
    justify-content: space-between;
    /* Crée un espace entre l'image et le texte */
    padding: 50px;
    /* Espacement autour de la section */
    transform: translateY(50px);
    animation: fadeInUp 4s ease-out forwards;
}

.presentation4 h2 {
    font-size: 35px;
    /* Taille du titre */
    margin-bottom: 20px;
    /* Marge sous le titre */
    animation: slideInLeft 4s ease-out forwards;
    margin-left: 30px;
    color: var(--text-color);
}

.presentation4 p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 4.5s ease-out forwards 3.5s;
    margin-left: 30px;
    margin-top: 30px;
}

.presentation4 img {
    max-width: 40%;
    /* L'image occupe 50% de la largeur */
    height: auto;
    border-radius: 10px;
    /* Ajoute des coins arrondis à l'image (optionnel) */
    transform: scale(0.9);
    opacity: 0;
    animation: fadeInScale 4s ease-out forwards 3.8s;
}

.presentation5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 5s ease-out forwards;
}

.presentation5 .text-content {
    display: flex;
    flex-direction: column;
    /* Aligne le h2 et le p verticalement */
    justify-content: flex-start;
    /* Aligne les éléments en haut */
    gap: 20px;
    /* Ajoute un espacement entre h2 et p */
}

.presentation5 h2 {
    font-size: 35px;
    color: var(--text-color);
    text-align: left;
    animation: slideInLeft 3s ease-out forwards;
    margin-right: 30px;
}

.presentation5 p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    opacity: 0;
    animation: fadeIn 4.5s ease-out forwards 3.5s;
    margin-right: 30px;
    margin-top: 30px;
}

.presentation5 img {
    max-width: 40%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    animation: fadeInScale 5s ease-out forwards 4.8s;
}

.presentation6 {
    text-align: center;
    /* Centrage du texte */
    margin-top: 90px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.presentation6 h2 {
    font-size: 35px;
    color: var(--text-color);
    margin-bottom: 100px;
}

.presentation6 p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    /* Centrage du texte */
    margin-bottom: 20px;
}

.contact-link {
    font-weight: bold;
    color: #0e75e4;
    text-decoration: none;
    cursor: pointer;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Style pour la section prestations */
.prestations {
    padding: 60px;
    text-align: center;
}

.prestations h2 {
    font-size: 50px;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* Conteneur des cartes */
.cards-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

/* Style pour la section prestations */
.prestations {
    padding: 60px;
    text-align: center;
}

.prestations h2 {
    font-size: 50px;
    margin-bottom: 50px;
    color: var(--text-color);
    margin-top: 60px;
    margin-bottom: 150px;
}

/* Conteneur des cartes */
.cards-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

/* Style des cartes */
.card {
    padding: 30px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;

    /* Double bordure : */
    border: 8px solid #B8860B;
    /* Bordure extérieure */
    padding: 25px;
    /* Ajuste la taille du padding pour donner de l'espace pour la bordure intérieure */
    box-sizing: border-box;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D4AF37, #d8cb85);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    /* Placer en arrière-plan */
    border-radius: 10px;
    /* Assure que la bordure intérieure est arrondie aussi */
}

.card h3 {
    font-size: 33px;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    font-size: 16px;
}

.card p {
    font-size: 20px;
}

.card li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #a77f7f;
}

/* Prix */
.card .price {
    font-size: 25px;
    font-weight: bold;
    color: #007bff;
    position: relative;
    z-index: 1;
}

/* Effet de survol */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #d8cb85;
    /* Change la couleur de la bordure extérieure au survol */
}

.card:hover::before {
    opacity: 0.15;
    /* Affiche le dégradé en arrière-plan lors du survol */
}

/* Animation pour l'apparition des cartes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 1s ease-out forwards;
}

/* Les cartes doivent apparaître avec un léger délai pour ne pas être trop rapides */
.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Style pour la section prestations annexes */
.prestations-annexes {
    padding: 60px;
    text-align: center;
    background-color: transparent;
    /* Fond transparent */
}

.prestations-annexes h2 {
    font-size: 50px;
    margin-bottom: 150px;
    color: var(--text-color);
    margin-top: 50px;
}

.prestations-annexes h3 {
    font-size: 28px;
    margin-bottom: 35px;
    margin-top: 50px;
    color: var(--text-color);
    text-decoration: underline;
}

/* Conteneur des prestations annexes */
.prestations-annexes div {
    margin-bottom: 70px;
}

/* Titre de chaque prestation */
.prestations-annexes p {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Prix */
.prestations-annexes .price {
    font-size: 26px;
    font-weight: bold;
    color: #007bff;
    margin-top: 15px;
}

/* Effet d'animation pour l'apparition des prestations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Application de l'animation aux divs */
.prestations-annexes div {
    animation: fadeInUp 1s ease-out forwards;
}

/* Les prestations doivent apparaître avec un léger délai pour ne pas être trop rapides */
.prestations-annexes div:nth-child(1) {
    animation-delay: 0.1s;
}

.prestations-annexes div:nth-child(2) {
    animation-delay: 0.2s;
}

.prestations-annexes div:nth-child(3) {
    animation-delay: 0.3s;
}

.prestations-annexes div:nth-child(4) {
    animation-delay: 0.4s;
}

.prestations-annexes div:nth-child(5) {
    animation-delay: 0.5s;
}

.prestations-annexes div:nth-child(6) {
    animation-delay: 0.6s;
}

/* Section Réalisations */
#realisations {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 40px auto;
}

/* Titre */
#realisations h2 {
    font-size: 50px;
    margin-bottom: 100px;
    color: var(--text-color);
    margin-top: 50px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}


/* Flèches gauche et droite */
.arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 40px;
    color: #B8860B;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.left {
    left: 10px;
    transform: translateY(-50%);
    top: 200px;
}

.right {
    right: 10px;
    transform: translateY(-50%);
    top: 200px;
}

.carousel-content {
    position: relative;
}


.carousel-content {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    text-align: center;
}

.carousel-img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousel-content span {
    display: block;
    font-size: 22px;
    color: #d8cb85;
}

.carousel-content a {
    font-size: 22px;
    color: #B8860B;
}

.carousel-content a:hover {
    font-size: 22px;
    color: #d8cb85;
}

.carousel-content p {
    font-size: 35px;
    color: #B8860B;
}

/* Dots pour navigation */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dots span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #D4AF37;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
}

.dots span.active {
    background: #d8cb85;
}

#devis {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    max-width: 600px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: transparent;
}

.devis-form h2 {
    font-size: 50px;
    margin-bottom: 100px;
    color: var(--text-color);
    /* Utilisation de la couleur du texte du site */
    text-align: center;
    /* Centrer le titre */
}

.devis-form input,
.devis-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color, #D4AF37);
    /* Bordure claire mais qui peut être changée selon ton thème */
    background-color: transparent;
    /* Fond transparent */
    border-radius: 8px;
    font-size: 25px;
    color: var(--text-color);
    /* Utilisation de la couleur du texte du site */
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.devis-form input:focus,
.devis-form textarea:focus {
    border-color: var(--highlight-color, #D4AF37);
    /* Couleur de bordure au focus */
    outline: none;
}

.devis-form input[type="email"] {
    margin-bottom: 25px;
    /* Un peu plus d'espace pour le champ email */
}

.devis-form textarea {
    resize: vertical;
    /* Permet de redimensionner verticalement le textarea */
}

.devis-form button {
    width: 100%;
    padding: 15px;
    background-color: var(--button-color, #D4AF37);
    /* Couleur de fond du bouton */
    color: rgb(12, 2, 2);
    border: none;
    border-radius: 8px;
    font-size: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.devis-form button:hover {
    background-color: var(--button-hover-color, #8f751f);
    /* Couleur de survol pour le bouton */
}

@media (max-width: 768px) {
    #devis {
        padding: 40px 10px;
    }

    .form-container {
        padding: 20px;
    }
}

footer {
    color: var(--footer-text-color, #D4AF37);
    /* Couleur du texte */
    text-align: center;
    /* Centrer le texte */
    padding: 60px 0;
    /* Espacement autour du texte */
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 25px;
}

footer p {
    margin: 0;
    font-size: 25px;
    color: var(--footer-text-color, #D4AF37);
    /* Couleur du texte */
    line-height: 1.5;
}

/* Écrans moyens (grandes tablettes, petits écrans) */
@media screen and (max-width: 1024px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        max-width: 300px;
        max-height: 300px;
        margin-right: 0;
    }

    .logo .text {
        margin-top: 20px;
        margin-left: 0;
    }

    .presentation,
    .presentation2,
    .presentation3,
    .presentation4,
    .presentation5 {
        flex-direction: column;
        text-align: center;
    }

    .presentation img,
    .presentation2 img,
    .presentation3 img,
    .presentation4 img,
    .presentation5 img {
        max-width: 80%;
        margin: 20px auto;
    }

    .presentation h2,
    .presentation2 h2,
    .presentation3 h2,
    .presentation4 h2,
    .presentation5 h2 {
        font-size: 35px;
        text-align: center;
    }

    .presentation p,
    .presentation2 p,
    .presentation3 p,
    .presentation4 p,
    .presentation5 p {
        font-size: 20px;
        text-align: center;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
    }
}

/* Tablettes et téléphones (jusqu'à 768px) */
@media screen and (max-width: 768px) {

    /* Centrage global */
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
    }

    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
        /* Réduit l'espacement sous le logo */
    }

    .logo img {
        max-width: 200px;
        max-height: 200px;
    }

    .logo h1 {
        font-size: 35px;
    }

    .logo p {
        font-size: 22px;
    }

    .boutton {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 10px;
        /* Réduit l'espacement sous le bouton */
    }

    .boutton button {
        width: 80%;
        font-size: 16px;
        padding: 12px 25px;
        margin-bottom: 10px;
        /* Réduit l'espacement entre les boutons */
    }

    .presentation,
    .presentation2,
    .presentation3,
    .presentation4,
    .presentation5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
        /* Réduit l'espacement entre les sections de présentation */
    }

    .presentation img,
    .presentation2 img,
    .presentation3 img,
    .presentation4 img,
    .presentation5 img {
        max-width: 90%;
    }

    .presentation h2,
    .presentation2 h2,
    .presentation3 h2,
    .presentation4 h2,
    .presentation5 h2,
    .presentation6 h2 {
        font-size: 28px;
    }

    .presentation p,
    .presentation2 p,
    .presentation3 p,
    .presentation4 p,
    .presentation5 p {
        font-size: 18px;
    }

    .prestations,
    .prestations-annexes {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        /* Réduit l'espacement sous les prestations */
    }

    .prestations h2,
    .prestations-annexes h2 {
        font-size: 32px;
    }

    .prestations-annexes p {
        font-size: 18px;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        /* Réduit l'espacement sous la carte */
    }

    .card {
        width: 90%;
        padding: 20px;
        text-align: center;
        margin-bottom: 10px;
        /* Réduit l'espacement entre les cartes */
    }

    .arrow {
        top: 50%;
        transform: translateY(-50%);
    }

    .left {
        top: 105px;
        left: 0%;
    }

    .right {
        top: 105px;
        right: 0%;
    }
}


/* Téléphones */
@media screen and (max-width: 480px) {

    /* Centrer tous les éléments */
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
    }

    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 8px;
        /* Réduit l'espacement sous le logo */
    }

    .logo img {
        max-width: 200px;
        max-height: 200px;
    }

    .logo h1 {
        font-size: 30px;
    }

    .logo p {
        font-size: 20px;
    }

    .boutton {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 8px;
        /* Réduit l'espacement sous le bouton */
    }

    .boutton button {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 8px;
        /* Réduit l'espacement entre les boutons */
    }

    .presentation,
    .presentation2,
    .presentation3,
    .presentation4,
    .presentation5,
    .presentation6 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
        /* Réduit l'espacement entre les sections de présentation */
    }

    .presentation img,
    .presentation2 img,
    .presentation3 img,
    .presentation4 img,
    .presentation5 img {
        max-width: 100%;
    }

    .presentation h2,
    .presentation2 h2,
    .presentation3 h2,
    .presentation4 h2,
    .presentation5 h2,
    .presentation6 h2 {
        font-size: 26px;
    }

    .presentation p,
    .presentation2 p,
    .presentation3 p,
    .presentation4 p,
    .presentation5 p,
    .presentation6 p {
        font-size: 16px;
    }

    .prestations,
    .prestations-annexes {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 12px;
        /* Réduit l'espacement sous les prestations */
    }

    .prestations h2,
    .prestations-annexes h2 {
        font-size: 30px;
    }

    .prestations-annexes p {
        font-size: 16px;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 12px;
        /* Réduit l'espacement sous les cartes */
    }

    .card {
        width: 100%;
        padding: 15px;
        text-align: center;
        margin-bottom: 8px;
        /* Réduit l'espacement entre les cartes */
    }
}