@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5; /* Gris très clair */
    font-family:"Inter";
    overflow-x:hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    background-color: #FFF;
}

.logo img {
    height: 75px; /* Ajustez selon la taille de votre logo */
}

.nav-links {
    display: flex;
    justify-content: space-around;
}

.nav-links li {
    list-style: none;
    padding: 0 20px;
}

.nav-links a {
    color: #875075;
    text-decoration: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #875075;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: #FFF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index:1000;
    }
    .nav-links li {
        opacity: 0;
        padding:30px 0;
    }

    .nav-links a {
        color:#875075;
        font-size:23px;
    }

    .burger {
        display:block;
        z-index:1001;
    }

    .burger div {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero */

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero2 {
    height:50vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #875075 0%, #a06b8f 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 0 5%;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button, .secondary-button {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: white;
    color: #875075;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-button:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-image {
        display: none;
    }
    .hero-cta {
        justify-content: center;
    }
}

@media screen and (max-width:760px) {
    .hero-title {
        font-size:2rem;
    }
    .hero {
        height:80vh;
    }
}

/* Présentation */

.presentation {
    background-color: #f5f5f5;
    padding: 80px 5%;
    text-align: center;
}

.presentation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.presentation h2 {
    font-size: 2.5rem;
    color: #875075;
    margin-bottom: 50px;
    position: relative;
}

.presentation h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #875075;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.expertise-item {
    background-color: #FFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item i {
    display:block;
    margin:10px 0 30px 0;
    font-size:25px;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.expertise-item h3 {
    font-size: 1.4rem;
    color: #875075;
    margin-bottom: 15px;
}

.expertise-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.language-note {
    font-size: 1.1rem;
    color: #875075;
    font-style: italic;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .presentation h2 {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-item {
        padding: 20px;
    }
    
    .expertise-item h3 {
        font-size: 1.2rem;
    }
    
    .expertise-item p {
        font-size: 0.9rem;
    }
}

/* Compétences */

.competences {
    background-color: #875075;
    padding: 80px 5%;
    color: white;
    text-align: center;
}

.competences h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.competences h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: white;
}

.competences-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.competence-item {
    flex-basis: calc(20% - 40px);
    min-width: 200px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.competence-item i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.competence-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .competence-item {
        flex-basis: calc(50% - 40px);
    }
}

@media (max-width: 600px) {
    .competences h2 {
        font-size: 2rem;
    }

    .competence-item {
        flex-basis: calc(100% - 40px);
        min-width: unset;
    }
}


/* Diplomes et Certifications */

.certifications {
    background-color: #f5f5f5;
    padding: 80px 5%;
    text-align: center;
}

.certifications h2 {
    font-size: 2.5rem;
    color: #875075;
    margin-bottom: 50px;
    position: relative;
}

.certifications h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #875075;
}

.road {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.road::before {
    content: '';
    position: absolute;
    top: 0;
    left: 70%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #875075;
}

.road-marker {
    position: relative;
    margin: 40px 0;
    text-align: left; /* Aligner le texte à gauche */
}

.marker {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #875075;
    border-radius: 50%;
    border: 4px solid white; /* Bordure blanche autour du marqueur */
}

.road-marker p {
    margin-left: 80px; /* Espacement pour le texte par rapport au marqueur */
    font-size: 1.1rem;
    width:50%;
}

.road-marker p small {
    font-size: 0.9rem; /* Taille de police plus petite pour les notes */
}

@media (max-width: 768px) {
    .certifications h2 {
        font-size: 2rem;
    }

    .road-marker p {
        font-size: 1rem; /* Réduire la taille du texte sur les petits écrans */
        width:60%;
    }

    .road::before {
        left:90%;
    }
    .marker {
        left:90%;
    }
}

/* Témoignages */

.temoignages {
    background-color: #875075;
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.temoignages h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.temoignages h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f5f5f5;
}

.temoignages-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temoignage-item {
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #875075;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    width: 90%;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temoignage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.temoignage-item blockquote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.temoignage-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #875075;
}


.temoignages-row {
    display: flex;
    justify-content: space-evenly; /* Centrer les boîtes du bas */
    align-items: center;
    width: 100%; /* Utiliser toute la largeur */
}

.temoignage-item p {
    margin-top: 15px; /* Espacement entre le témoignage et l'auteur */
}

@media (max-width: 768px) {
    .temoignages-row {
        flex-direction: column;
    }
    .temoignages h2 {
        font-size: 2rem; /* Réduire la taille du titre sur petits écrans */
    }

    .temoignage-item {
        padding: 20px; /* Réduire le padding sur petits écrans */
        font-size: 0.9rem; /* Réduire la taille du texte sur petits écrans */
        margin-bottom: 10px; /* Espacement réduit entre les boîtes */
    }
}

/* Clients */

.clients-prestigieux {
    background-color: #f5f5f5;
    padding: 80px 5%;
    text-align: center;
}

.clients-prestigieux h2 {
    font-size: 2.5rem;
    color: #875075;
    margin-bottom: 20px;
    position: relative;
}

.clients-prestigieux h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #875075;
}

.clients-prestigieux .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.client-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.client-card h3 {
    font-size: 1.4rem;
    color: #875075;
    margin-bottom: 10px;
}

.client-card > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.client-description {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .clients-prestigieux h2 {
        font-size: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-card {
        padding: 20px;
    }
}

/* F.A.Q */

.faq {
    background-color: #875075;
    color: white;
    padding: 60px 5%;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-item {
    width:60%;
    margin:auto;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex; /* Utiliser flexbox pour aligner la flèche */
    justify-content: space-between; /* Espacement entre le texte et la flèche */
    align-items: center; /* Centrer verticalement */
}

.faq-question:hover {
    color: #f5f5f5; /* Légère variation au survol */
}

.arrow {
    transition: transform 0.3s ease; /* Transition pour l'animation de rotation */
}

.faq-answer {
    font-size: 1rem;
    line-height:1.6;
    color: #e0e0e0; /* Couleur légèrement plus claire pour le texte */
    margin-top: 10px;
    display: none; /* Masquer par défaut */
}

/* Styles pour afficher la réponse lors du clic */
.faq-item.active .faq-answer {
    display: block; /* Afficher la réponse si l'élément est actif */
}

.faq-item.active .arrow {
    transform: rotate(180deg); /* Faire pivoter la flèche lorsque l'élément est actif */
}

@media screen and (max-width:1220px) {
    .faq-item {
        width:90%;
    }
}


@media screen and (max-width:760px) {
    .faq-item h3 {
        font-size:1.3rem;
    }
}

/* Footer */

.footer {
    background-color: #fff;
    padding: 20px 5%;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 75px; /* Ajustez selon la taille de votre logo */
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Espacement entre les liens */
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: #875075; /* Couleur des liens */
    font-weight: bold;
}

.footer-nav a:hover {
    text-decoration: underline; /* Soulignement au survol */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #666; /* Couleur du texte de copyright */
}

.legal-link {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #875075; /* Couleur du lien vers les mentions légales */
}

/* Styles responsives */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav li {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 15px 3%;
    }

    .footer-logo img {
        height: 40px; /* Réduire légèrement la taille du logo sur très petits écrans */
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-bottom p, .legal-link {
        font-size: 0.8rem;
    }
}

/* Offres */

.prestations {
    background-color: #f5f5f5;
    padding: 80px 5%;
    text-align: center;
}

.prestations h2 {
    font-size: 2.5rem;
    color: #875075;
    margin-bottom: 50px;
    position: relative;
}

.prestations h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #875075;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.prestation-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.prestation-card i {
    font-size: 3rem;
    color: #875075;
    margin-bottom: 20px;
}

.prestation-card h3 {
    font-size: 1.4rem;
    color: #875075;
    margin-bottom: 15px;
}

.prestation-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.prestations-subtitle {
    font-size: 1.2rem;
    color: #666; /* Couleur du sous-titre */
    margin-bottom: 40px; /* Espacement entre le sous-titre et la grille */
}

@media (max-width: 768px) {
    .prestations h2 {
        font-size: 2rem;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .prestation-card {
        padding: 20px;
    }
    
    .prestation-card h3 {
        font-size: 1.2rem;
    }
    
    .prestation-card p {
        font-size: 0.9rem;
    }
}

/* Coaching Entreprise */

.coaching-entreprise {
    background: #f5f5f5;
    padding: 80px 5%;
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coaching-header {
    text-align: center;
    margin-bottom: 50px;
}

.coaching-header h2 {
    font-size: 3rem;
    color: #875075;
    margin-bottom: 15px;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin: 0 auto;
}

.coaching-intro p {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.coaching-details {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.coaching-thematiques, 
.coaching-modalites {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(135, 80, 117, 0.1);
    transition: transform 0.3s ease;
}

.coaching-thematiques:hover,
.coaching-modalites:hover {
    transform: translateY(-10px);
}

.coaching-thematiques h3, 
.coaching-modalites h3 {
    color: #875075;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
}

.coaching-thematiques h3::after,
.coaching-modalites h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #875075;
}

.coaching-thematiques ul, 
.coaching-modalites ul {
    list-style: none;
    padding: 0;
}

.coaching-thematiques li, 
.coaching-modalites li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

.coaching-thematiques .icon,
.coaching-modalites .icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.duree {
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
    color: #875075;
}

@media (max-width: 768px) {
    .coaching-details {
        flex-direction: column;
    }
}


/* Coach de dirigeants en transition */

.coaching-dirigeants {
    background: #f5f5f5;
    padding: 80px 5%;
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coaching-header {
    text-align: center;
    margin-bottom: 50px;
}

.coaching-header h2 {
    font-size: 3rem;
    color: #875075;
    margin-bottom: 15px;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin: 0 auto;
}

.coaching-intro p {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.coaching-details {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.coaching-focus, 
.coaching-contenu {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(135, 80, 117, 0.1);
    transition: transform 0.3s ease;
}

.coaching-focus:hover,
.coaching-contenu:hover {
    transform: translateY(-10px);
}

.coaching-focus h3, 
.coaching-contenu h3,
.coaching-duree h3 {
    color: #875075;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
}

.coaching-focus h3::after,
.coaching-contenu h3::after,
.coaching-duree h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #875075;
}

.coaching-duree h3::after {
    display:none;
}

.coaching-focus ul, 
.coaching-contenu ul {
    list-style: none;
    padding: 0;
}

.coaching-focus li, 
.coaching-contenu li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

.coaching-focus .icon,
.coaching-contenu .icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.coaching-duree {
    text-align: center;
    margin-top: 40px;
}

.coaching-duree p {
    font-size: 1.4rem;
    color: #875075;
    font-weight: bold;
}

@media (max-width: 768px) {
    .coaching-details {
        flex-direction: column;
    }
}

/* Bilan de compétences */

.bilan-competences {
    background-color: #875075;
    color: #ffffff;
    padding: 80px 5%;
}

.bilan-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bilan-header {
    text-align: center;
    margin-bottom: 50px;
}

.bilan-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bilan-header .header-underline {
    width: 100px;
    height: 4px;
    background-color: #FFF;
    margin: 0 auto;
}

.bilan-intro p {
    text-align: center;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.bilan-details {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.bilan-contenu {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin:30px 0;
}

.bilan-contenu h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.bilan-contenu ul {
    list-style-type: none;
    padding: 0;
}

.bilan-contenu li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bilan-contenu .icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.bilan-duree {
    margin-top: 40px;
}

.bilan-duree h3 {
    font-size: 1.8rem;
}

.bilan-duree ul {
    list-style-type: none;
    padding: 0;
}

.bilan-duree li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .bilan-details {
        flex-direction: column;
        gap: 30px; /* Ajustement de l'espacement pour les petits écrans */
    }
}

/* Suivi post-transition */

.suivi-post-transition {
    background-color: #f5f5f5;
    padding: 80px 5%;
}

.suivi-container {
    max-width: 1200px;
    margin: 0 auto;
}

.suivi-header {
    text-align: center;
    margin-bottom: 50px;
}

.suivi-header h2 {
    font-size: 3rem;
    color: #875075;
    margin-bottom: 15px;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin: 0 auto;
}

.suivi-intro {
    text-align: center;
    margin-bottom: 50px;
}

.suivi-intro p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.suivi-details {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.suivi-contenu, .suivi-duree {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(135, 80, 117, 0.1);
}

.suivi-contenu {
    flex: 2;
}

.suivi-duree {
    flex: 1;
}

.suivi-contenu h3, .suivi-duree h3 {
    color: #875075;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
}

.suivi-contenu h3::after, .suivi-duree h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #875075;
}

.suivi-contenu ul {
    list-style: none;
    padding: 0;
}

.suivi-contenu li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

.suivi-contenu .icon {
    margin-right: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.suivi-duree p {
    font-size: 1.2rem;
    color: #333;
}

@media (max-width: 768px) {
    .suivi-details {
        flex-direction: column;
    }
    
    .suivi-header h2 {
        font-size: 2.5rem;
    }
    
    .suivi-intro p {
        font-size: 1.1rem;
    }
}

/* Coaching collectif pour la transition professionnelle */

.coaching-collectif {
    background-color: #f5f5f5;
    padding: 80px 5%;
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coaching-header {
    text-align: center;
    margin-bottom: 50px;
}

.coaching-header h2 {
    font-size: 3rem;
    color: #875075;
    margin-bottom: 15px;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin: 0 auto;
}

.coaching-intro {
    text-align: center;
    margin-bottom: 50px;
}

.coaching-intro p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.coaching-details {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items:center;
}

.coaching-contenu, .coaching-duree {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(135, 80, 117, 0.1);
}

.coaching-duree {
    width:30%;
}

@media screen and (max-width:768px) {
    .coaching-duree, .coaching-contenu {
        width:90%;
    }
}

.coaching-contenu h3, .coaching-duree h3 {
    color: #875075;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.coaching-contenu ul, .coaching-duree ul {
    list-style-type: none;
    padding: 0;
}

.coaching-contenu li, .coaching-duree li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.coaching-contenu .icon, .coaching-duree .icon {
    margin-right: 15px;
    font-size: 1.5rem; /* Adjust icon size */
}

.coaching-duree p {
    font-size: 1rem; 
}

.transition-pro-duree {
    margin-top:0;
}

.coaching-contenu h3 {
    margin-bottom:40px;
}

@media (max-width: 768px) {
    .coaching-details {
        flex-direction: column; /* Stack columns on small screens */
        gap: 30px; /* Adjust spacing */
    }

    .duree-dirigeants {
        width:100%;
    }

    .transition-pro-duree {
        width:100% !important;
    }

    .coaching-focus {
        width:100%;
    }

    .format-duree {
        margin:30px 0;
    }

    .format-duree li {
        text-align: center;
        justify-content:center;
    }

    .coaching-contenu h3 {
        margin-bottom:40px;
    }

    .coaching-thematiques, .coaching-modalites {
        width:100%;
    }
}

/* Brochure */

.management-interculturel {
    background-color: #f5f5f5;
    padding: 80px 5%;
}

.management-container {
    max-width: 1200px;
    margin: 0 auto;
}

.management-header {
    text-align: center;
    margin-bottom: 50px;
}

.management-header h2 {
    font-size: 3rem;
    color: #875075;
    margin-bottom: 15px;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin: 0 auto;
}

.management-content {
    text-align: center;
    margin-bottom: 40px;
}

.management-content p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

.management-details {
    margin-bottom: 40px;
    display:flex;
    margin:100px 0 120px 0;
}

.management-details h3 {
    color: #875075;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.management-details ul {
    list-style-type: none;
    padding-left: 0;
}

.management-details li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.management-interculturel .cta-container {
    text-align: center;
    margin:60px 0 0 0;
}

.management-interculturel .cta-button {
    background-color: #875075; /* Couleur du bouton */
    color: white; /* Couleur du texte */
    padding: 15px 30px; /* Espacement interne */
    border-radius: 5px; /* Coins arrondis */
    text-decoration: none; /* Pas de soulignement */
    font-size: 1.2rem; /* Taille du texte */
}

.management-interculturel .cta-button:hover {
    background-color: #6b4e6b; /* Couleur au survol */
}

@media screen and (max-width:1050px) {
    .management-details {
        flex-direction: column;
    }
    .image-programme {
        width:90% !important;
        margin:30px auto;
    }
}

/* Contact */

.contact-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
    margin-right: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #875075;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
}

.info-details {
    margin-top: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap:5px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 2rem;
    color: #875075;
    margin-right: 15px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #875075;
}

.contact-form {
    flex: 1.5;
    padding: 30px;
    background-color: white; 
    border-radius: 10px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem; 
    color: #875075; 
    margin-bottom:30px;
}

.form-group {
    margin-bottom: 15px; 
}

.form-group input,
.form-group textarea {
    width: 100%; /* Utiliser 100% pour simplifier le calcul */
    padding: 15px; 
    border-radius: 5px; 
    border: solid 1px #ccc; 
    font-size: 1rem; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Ajout de transitions */
    outline: none; /* Supprimer le contour par défaut */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #875075; /* Changer la couleur de la bordure au focus */
    box-shadow: 0 0 5px rgba(135, 80, 117, 0.5); /* Ajouter une ombre portée au focus */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: #aaa; 
   opacity: 0.8; /* Légèrement transparent pour un look moderne */
   transition: opacity 0.3s ease; /* Transition pour l'opacité */
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
   opacity: 0.5; /* Réduire l'opacité du placeholder au focus */
}

textarea {
    resize:vertical;
}

.submit-button {
   background-color: #875075; 
   color: white; 
   padding: 15px; 
   border-radius: 5px; 
   border: none; 
   cursor:pointer; 
   font-size:1.1rem; 
   transition:.3s; 
}

.submit-button:hover {
   background-color:#6b4e6b; 
}

/* Responsive Styles */
@media (max-width:768px) {
   .contact-container {
       flex-direction: column; /* Stack columns on small screens */
   }

   .contact-info, .contact-form {
       margin-right:0; /* Remove right margin on small screens */
       margin-bottom:30px; /* Add bottom margin */
   }
}

/* Mentions Legales */

.mentions-legales {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.mentions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mentions-legales h2 {
    font-size: 2.5rem;
    color: #875075;
    text-align: center;
}

.header-underline {
    width: 100px;
    height: 4px;
    background-color: #875075;
    margin: 20px auto;
}

.mentions-content,
.mentions-articles {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.mentions-legales h3 {
    font-size: 2rem;
    color: #875075;
}

.mentions-legales h4 {
    font-size: 1.5rem;
    color: #333;
    margin:20px 0;
}

.mentions-legales p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6; 
}

/* Lego */

.lego-serious-play {
    background-color: #f5f5f5;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.lego-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lego-container h2 {
    font-size: 2.8rem; /* Taille de police plus grande */
    color: #875075;
    text-align: center;
    margin-bottom: 20px; /* Ajout d'un espacement */
    text-transform: uppercase; /* Mettre le texte en majuscules */
}

.header-underline {
    width: 120px; /* Largeur de l'underline augmentée */
    height: 4px;
    background-color: #875075;
    margin: 20px auto;
    border-radius: 5px; /* Coins arrondis */
}

.lego-intro,
.why-serious-play,
.method-beliefs,
.workshops {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Ajout de transitions */
}

.lego-intro:hover,
.why-serious-play:hover,
.method-beliefs:hover,
.workshops:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15); /* Ombre plus prononcée au survol */
}

.lego-container h3 {
    font-size: 2rem;
    color: #875075;
    margin-bottom: 15px; /* Espacement sous le titre */
}

.lego-container ul {
    list-style-type: disc; /* Style des listes */
    padding-left: 20px; /* Espacement à gauche */
}

.lego-container ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px; /* Espacement entre les éléments de la liste */
}

.lego-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6; /* Amélioration de la lisibilité */
}

.video-container {
    text-align: center; /* Centrer la vidéo */
}

.video-container video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin:30px 0;
}

/* Styles Responsives */
@media (max-width:768px) {
   .lego-container h2 {
       font-size: 2.2rem; /* Ajustement de la taille du titre sur mobile */
   }

   .lego-intro,
   .why-serious-play,
   .method-beliefs,
   .workshops {
       padding: 20px; /* Réduction de l'espacement intérieur sur mobile */
   }

   .lego-container h3 {
       font-size: 1.5rem; /* Ajustement de la taille des sous-titres sur mobile */
   }

   .lego-container  li {
       font-size: 0.9rem; /* Réduction de la taille de police des listes sur mobile */
   }
}

.image-programme {
    width:40%;
}

.image-programme img {
    width:100%;
    border-radius:24px;
}