* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
/* Fixer la barre de navigation en haut avec une ombre */
nav {
    background-color: #043b3d; /* Couleur de fond verte */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    background: linear-gradient(45deg, #0FB9AF, #d4d4d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border: 2px solid;
    border-image: linear-gradient(45deg, #0FB9AF, #d4d4d4) 1;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: absolute;
    left: 20px;
}

.logo:hover {
    background: linear-gradient(45deg, #d4d4d4, #0FB9AF);
    -webkit-background-clip: text;
    background-clip: text;
    border-image: linear-gradient(45deg, #d4d4d4, #0FB9AF) 1;
    transform: translateY(-2px);
}

/* Navigation principale */
nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0 auto; /* Centre le menu */
    padding: 0;
    list-style: none;
}

/* Items de navigation */
nav ul li {
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

nav ul li a {
    color: white; /* Texte en blanc */
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}

/* Style des liens au survol */
nav ul li a:hover {
    color: #0FB9AF; /* Couleur au survol */
}

/* Menu déroulant */
.dropdown {
    position: relative;
}

/* Supprimer complètement le comportement au survol */
.dropdown:hover .dropdown-menu,
.dropdown:hover > .dropdown-menu {
    display: none;
}

/* Style pour le dropdown */
.dropdown {
    position: relative;
}

/* Style pour le menu déroulant */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #0FB9AF;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 5px;
}

/* Classe pour afficher le menu uniquement au clic */
.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.dropdown-menu li a:hover {
    color: #043b3d; /* Nouvelle couleur au survol */
}

/* Styles pour le mode responsive */
@media screen and (max-width: 991px) {
    nav {
        padding: 15px;
        justify-content: flex-start;
    }
    
    nav ul {
        position: static;
        transform: none;
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .logo {
        position: static; /* Remet le logo en position normale sur mobile */
        margin-right: auto; /* Pousse le logo à gauche */
    }

    /* Style des sous-menus en responsive */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: transparent; /* Fond transparent */
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .dropdown-menu li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu li a {
        padding: 10px;
        text-align: center;
        color: white;
    }

    /* Ajustement des marges et paddings pour un alignement uniforme */
    nav ul li, 
    .dropdown-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    nav ul li a,
    .dropdown-menu li a {
        padding: 10px;
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Indicateur pour montrer qu'il y a un sous-menu */
    .dropdown > a::after {
        content: '▼';
        margin-left: 5px;
        font-size: 0.8em;
    }

    .dropdown.active > a::after {
        content: '▲';
    }
}

/* Fixer la position du contenu principal pour qu'il ne soit pas masqué sous la barre de navigation */
main {
    margin-top: 0;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
}

/* Titre principal dans #intro */
.main-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    color: #043b3d;
    margin-bottom: 20px;
}

/* Section d'introduction */
/* Section de la bannière */
#banner-section {
    background-image: url('banniere\ 2.png'); /* Mettez l'URL de votre image ici */
    background-size: cover; /* L'image couvre toute la section */
    background-position: center; /* L'image est centrée */
    
    padding: 80px 0; /* Padding autour du texte */
    text-align: center; /* Centrer le texte */
    color: #ffffff; /* Couleur du texte */
    margin-top: 0px; /* Supprime toute marge au-dessus de la section */
}

#banner-section h1 {
    font-size: 3.5em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);}

/* Section du texte introductif */
#intro {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
}

#intro p {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Section de présentation */
#presentation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.photo {
    flex: 1;
    text-align: center;
    margin-right: 20px;
}

.photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #043b3d;
}

.text {
    flex: 2;
    font-size: 1.1em;
    line-height: 1.6;
}

.text h2 {
    font-size: 2em;
    color: #043b3d;
    margin-bottom: 20px;
    position: relative;
}

.text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #0FB9AF;
    transition: width 0.3s ease;
}

.text h2:hover::after {
    width: 100%;
}

/* Style du bouton "En savoir plus" */
.btn-en-savoir-plus {
    display: inline-block;
    background-color: #0FB9AF; /* Couleur de fond du bouton */
    color: white; /* Couleur du texte */
    padding: 10px 20px; /* Padding pour rendre le bouton plus grand */
    font-size: 1.2em;
    text-decoration: none; /* Retirer la décoration du lien */
    border-radius: 5px; /* Bords arrondis */
    margin-top: 20px; /* Espacement au-dessus du bouton */
    transition: background-color 0.3s ease; /* Transition pour l'effet au survol */
    margin-bottom: 30px;
}

/* Effet de survol pour le bouton */
.btn-en-savoir-plus:hover {
    background-color: #043b3d; /* Changer la couleur de fond au survol */
}

/* Styles du menu burger */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Styles pour le menu burger actif */
.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Footer */
footer {
    background: #043b3d;
    color: #fff;
    padding: 60px 0 40px;
    margin-top: 60px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

/* Section slogan */
footer .slogan {
    font-size: 1.8em;
    font-weight: bold;
    color: #0FB9AF;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Section navigation */
footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-nav h3 {
    color: #0FB9AF;
    font-size: 1.2em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

footer .footer-nav h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0FB9AF;
}

footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

footer .footer-nav a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

footer .footer-nav a:hover {
    color: #0FB9AF;
    padding-left: 20px;
}

footer .footer-nav a:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

/* Section contact */
footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .contact-info h3 {
    color: #0FB9AF;
    font-size: 1.2em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

footer .contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0FB9AF;
}

footer .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .contact-info i {
    color: #0FB9AF;
    font-size: 1.2em;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

/* Media Queries */
@media screen and (max-width: 991px) {
    footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 40px 0 30px;
    }

    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .slogan {
        font-size: 1.5em;
        text-align: center;
    }

    footer .footer-nav,
    footer .contact-info {
        text-align: center;
    }

    footer .footer-nav h3::after,
    footer .contact-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer .contact-info p {
        justify-content: center;
    }
}

/* Section "Pourquoi choisir l'APA" */
/* Section "Pourquoi choisir l'APA" */
#apa-benefits {
    padding: 40px 20px; /* Augmentez le padding interne des sections */
    background-color: #f4f4f4;
    text-align: left;
    margin: 0 auto; /* Centrer la section */
    max-width: 1200px; /* Limitez la largeur maximale */
}

#apa-benefits h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #043b3d;
    margin-bottom: 40px;
}

/* Style pour chaque bénéfice */
.benefit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 5%;
}

.benefit-text {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.benefit h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #043b3d;
    margin-bottom: 15px;
}

/* Image à côté du texte dans la section bénéfices */
.benefit-image {
    flex: 1;
    text-align: center;
}

.benefit-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Inversion de l'ordre pour le paragraphe "Pour tous les âges" */
.benefit.reverse {
    flex-direction: row-reverse;
    margin-bottom: 10px; /* Espacement entre les paragraphes */
    line-height: 1.8;
}

/* Style du bouton "Réserver maintenant" */
.btn-reservation {
    display: inline-block;
    background-color: #0FB9AF;
    color: white;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-reservation:hover {
    background-color: #043b3d;
}

/* Title style */
.highlighted-title {
    font-size: 1.5em;
    color: #043b3d;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.highlighted-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #0FB9AF;
    transition: width 0.3s ease;
}

.highlighted-title:hover::after {
    width: 100%;
}

/* Liste des bénéficiaires de l'APA */
.benefit-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
}

.benefit-note {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555; /* Ajustez selon votre thème */
}

/* Mise à jour de la taille des titres */
#about-me {
    font-size: 2.5em; /* Taille plus petite pour "Qui suis-je ?" */
    margin-bottom: 10px;
}
/* Cibler le titre "À propos de l'APA" */
#about-apa {
    font-size: 2.5em; /* Augmenter la taille uniquement pour ce titre */
    margin-bottom: 10px;
    text-decoration: none; /* Enlever la ligne sous le texte */
}

/* Cibler la section "À propos de l'APA" */
#about-apa-section {
    /* Style spécifique pour la section, si nécessaire */
    padding: 60px;
}

.benefit-text h3 {
    font-size: 1.5em; /* Taille plus grande pour les sous-titres */
    color: #043b3d; /* Couleur du texte pour les sous-titres */
    margin-bottom: 5px;
}

/* Ajout de padding pour espacer le texte des bords */
.section {
    padding: 0 60px; /* Espacement à gauche et à droite */
}

.benefit {
    margin-bottom: 40px; /* Espacement entre les sections */
}

.benefit-text p {
    margin-bottom: 10px; /* Espacement entre les paragraphes */
    line-height: 1.8;
}

/* Mise en valeur des mots-clés */
.keyword {
    font-weight: bold;
    color: #0FB9AF; /* Couleur pour les mots-clés */
}

/* Optimisation du style des listes */
.benefit-text ul {
    margin-left: 20px; /* Décalage de la liste vers la droite */
}

.benefit-text ul li {
    margin-bottom: 10px; /* Espacement entre les éléments de la liste */
}

/* Espacement entre les paragraphes de la section "À propos de l'APA" */
#about-apa-section p {
    margin-bottom: 20px; /* Espacement entre les paragraphes */
    line-height: 1.8; /* Espacement entre les lignes */
}

/* Espacement entre les éléments de la liste */
#about-apa-section ul {
    margin-left: 20px; /* Décalage de la liste vers la droite */
}

#about-apa-section ul li {
    margin-bottom: 10px; /* Espacement entre les éléments de la liste */
}

/* Espacement entre les titres (h3) et les paragraphes suivants */
#about-apa-section h3 {
    margin-top: 30px; /* Espacement au-dessus des sous-titres */
    margin-bottom: 10px; /* Espacement en dessous des sous-titres */
}

/* Classe pour l'image à droite de la section "Ma pratique" */
.benefit {
    display: flex;
    justify-content: space-between; /* Pour espacer le texte et l'image */
    align-items: center; /* Centrer verticalement le contenu */
}

.benefit-image img {
    max-width: 100%; /* Ajuster l'image à la taille du conteneur */
    height: auto; /* Maintenir les proportions */
    width: 600px; /* Taille fixe pour l'image */
}

/* Classe pour la section "À propos de l'APA" avec l'image à gauche */
/* Conteneur principal pour l'image et le texte */
.apa-content {
    display: flex;
    align-items: flex-start;  /* Aligne l'image et le texte en haut */
    gap: 20px;  /* Espace entre l'image et le texte */
}

/* Style de l'image */
.apa-image img {
    width: 600px;  /* Largeur de l'image, ajustez selon vos besoins */
    height: auto;  /* Garder les proportions de l'image */
    border-radius: 8px; /* Facultatif : ajouter des bords arrondis */
}

/* Style du texte */
.apa-text {
    flex: 1;  /* Le texte prend tout l'espace restant */
    line-height: 1.8;  /* Espacement entre les lignes */
}

/* Titre à mettre en évidence */
.highlighted-title {
    color: #005f6b;  /* Exemple de couleur pour les titres */
    font-size: 1.2em; /* Ajuster la taille des titres */
}
.apa-image img {
    width: 600px;
    height: auto;
    border-radius: 8px;
}

        
    
#mentions-legales .legal-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.mention-legalesh1 {
    text-align: center;
}

/* Media Queries */
@media screen and (max-width: 991px) {
    nav {
        flex-direction: column;
        padding: 10px 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav .logo {
        margin: 0 0 15px 0;
        text-align: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    #banner-section h1 {
        font-size: 2.5em;
    }

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

    .photo {
        margin: 0 auto 20px;
    }

    .text {
        text-align: center;
    }

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

    footer .slogan, 
    footer .footer-nav, 
    footer .contact-info {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }

    #intro p {
        font-size: 1.2em;
    }

    .benefit {
        flex-direction: column;
    }

    .benefit.reverse {
        flex-direction: column;
    }

    .benefit-image {
        margin: 20px auto;
    }

    .benefit-image img {
        max-width: 100%;
    }
}

/* Media queries pour le responsive */
@media screen and (max-width: 991px) {
    .burger-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    nav ul {
        display: none;
        width: 100%;
        padding-top: 60px;
    }

    nav ul.active {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav {
        padding: 10px 0;
        position: relative;
    }
}

/* Empêcher le glisser-déposer des images */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.slogan p {
    color: #fff; /* Texte en blanc */
    font-size: 0.9em;
}

.hero-section {
    position: relative;
    height: 95vh; /* Réduit légèrement la hauteur */
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    top: -80px; /* Pour remonter la section sous la navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 59, 61, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #043b3d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn:hover {
    background-color: transparent;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-content {
        margin-left: 20px;  /* Marge à gauche */
        margin-right: 20px; /* Marge à droite */
        padding: 30px;      /* Réduit légèrement le padding */
    }

    .hero-title {
        font-size: 2em;     /* Réduit la taille du titre */
    }

    .hero-subtitle {
        font-size: 1.1em;   /* Réduit la taille du sous-titre */
    }
}

/* Pour les très petits écrans */
@media screen and (max-width: 480px) {
    .hero-content {
        margin-left: 15px;  /* Marge plus petite */
        margin-right: 15px;
        padding: 25px;
    }
}

/* Styles pour les nouvelles sections uniquement */
.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.intro-features span {
    padding: 10px 20px;
    background: rgba(15, 185, 175, 0.1);
    color: #043b3d;
    border-radius: 20px;
    font-weight: 500;
}

.intro-massage {
    margin-top: 20px;
    color: #043b3d;
}

/* Style de la section présentation */
.presentation-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.presentation-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style élégant pour l'image de profil */
.profile-image {
    flex: 0 0 25%;
    max-width: 200px;
    position: relative;
    padding: 12px;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #043b3d;
    border-radius: 20px;
    transform: rotate(-3deg);
    z-index: 1;
    opacity: 0.1;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #043b3d;
    border-radius: 20px;
    transform: rotate(3deg);
    z-index: 1;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(4, 59, 61, 0.15);
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.02);
}

/* Animation subtile au survol */
.profile-image:hover::before {
    transform: rotate(-4deg);
    transition: transform 0.3s ease;
}

.profile-image:hover::after {
    transform: rotate(4deg);
    transition: transform 0.3s ease;
}

/* Style du contenu */
.profile-content {
    flex: 1;
}

.profile-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #043b3d;
}

/* Grid d'expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-item i {
    font-size: 24px;
    color: #043b3d;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .presentation-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .profile-image {
        max-width: 180px;
        margin: 0 auto;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        justify-content: center;
    }
}

.highlight {
    color: #0FB9AF;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #043b3d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0FB9AF;
    transform: translateY(-2px);
}

/* Styles du menu mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #043b3d;
    z-index: 9999;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bouton burger */
.mobile-menu-toggle {
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Menu mobile */
.mobile-nav {
    display: none;
    background: #043b3d;
    padding: 10px 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}

/* Style des dropdowns */
.mobile-dropdown {
    position: relative;
}

.dropdown-arrow {
    position: absolute;
    right: 20px;
    top: 15px;
    color: white;
    font-size: 12px;
    transition: transform 0.3s;
    cursor: pointer;
}

.dropdown-arrow.active {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    padding-left: 40px;
}

/* Media queries */
@media screen and (max-width: 991px) {
    body {
        padding-top: 60px;
    }

    nav:not(.mobile-nav) {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

.download-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #043b3d, #065557);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 59, 61, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-link::before {
    content: '\f019'; /* Icône de téléchargement FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 12px;
    font-size: 1.1em;
}

.download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 59, 61, 0.3);
    background: linear-gradient(135deg, #065557, #043b3d);
}

.download-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(4, 59, 61, 0.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .download-link {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}