
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');



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

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #002b45;
}

.logo img {
    height: 115px;
    width: auto;
}

nav > ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s;
    color: #e0e0e0;
}

nav ul li a:hover {
    color: #c9a84c !important;
}


.page-accueil nav,
.page-droit-travail nav,
.page-cabinet nav,
.page-rh-deux nav ,
.page-relations-sociales nav {
    background-color: #ffffff;
}


.page-accueil nav > ul > li > a,
.page-droit-travail nav > ul > li > a,
.page-cabinet nav > ul > li > a,
.page-rh-deux nav > ul > li > a,
.page-relations-sociales nav > ul > li > a
 {
    color: #002b45;
}


.page-audit nav,
.page-rh nav,
.page-formation nav,
.page-rgpd nav,

.page-plus-dinfo nav {
    background-color: #002b45;
}


.page-audit nav > ul > li > a,
.page-rh nav > ul > li > a,
.page-formation nav > ul > li > a,
.page-rgpd nav > ul > li > a,
.page-plus-dinfo nav > ul > li > a {
    color: #ffffff;
}
.menu-deroulant ul li a {
    text-decoration: none !important;
    padding: 12px 25px;
    display: block;
    width: 100%;
}








.menu-deroulant ul li a:hover {
    text-decoration: none !important;
    color: #c9a84c; 
}

.menu-deroulant ul {
    display: none;       
    position: absolute;  
    top: 100%;            
    left: 0;
    background-color: #1a2a3a; 
    padding: 15px 0;
    min-width: 220px;
    flex-direction: column; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
    z-index: 1000;
}


.menu-deroulant:hover ul {
    display: flex; 
}


.menu-deroulant ul li {
    margin: 0;
    width: 100%;
}

.menu-deroulant ul li a {
    padding: 12px 25px;
    display: block;
    color: #ffffff;
    font-size: 14px;
}


.menu-deroulant ul li a:hover {
    background-color: #c9a84c !important; 
    color: #ffffff !important;           
}




.accueil-1 {
    background-image: url("Capture écran 2026-02-18 183705.png");
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
    color: white;
}

.content-1 p {
    max-width: 500px;
    line-height: 2;
    margin-bottom: 25px;
}


.accueil-2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 10%;
    background-color: #f4f4f4;
    gap: 60px;
}

.col-gauche {
    flex: 1.5;
}

.col-droite {
    flex: 1;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.img-bureau {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.liste-expertise {
    list-style: none;
    width: 100%;
    padding: 50px;
    margin-top: 65px;
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.liste-expertise:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 100px -12px rgba(0, 0, 0, 0.2);
}

.liste-expertise li {
    text-align: left;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon {
    min-width: 60px;
    height: 60px;
    border: 1px solid #c9a84c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.icon img {
    width: 35px;
}

.btn-expertise {
    display: inline-block;
    background-color: #002b45;
    color: white;
    text-decoration: underline;
    text-decoration-color: white;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-expertise:hover {
    background-color: #c9a84c;
    color: #002b45;
}

.a-propos {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.a-propos h2 {
    font-size: 32px;
    color: #004a7c;
    margin-bottom: 20px;
    border-left: 5px solid #004a7c;
    padding-left: 15px;
}


.accueil-3 {
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #fff;
}

.SERVICES, .METHODOLOGIE, .RESULTATS {
    flex: 1;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.METHODOLOGIE {
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.SERVICES p, .METHODOLOGIE p, .RESULTATS p {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 15px;
    margin-top: 15px;
}

.btn-plus-dinfo {
    display: inline-block;
    padding: 12px 24px;
    background-color: #002b45;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: white;
    border-radius: 25px;
    transition: 0.3s;
}


.accueil-4 {
    padding: 80px 5%;
    background-color: #f9f9f9;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
}

.accueil-4 h1 {
    font-size: 40px;
    color: #002b45;
    margin-bottom: 50px;
}

.accueil-4 div {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 20px 1%;
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 20px;      
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[class="2"]::before,
[class="17"]::before,
[class="35"]::before {
    display: block;
    font-size: 70px;
    font-weight: bold;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

[class="2"]::before  { content: "2"; }
[class="17"]::before { content: "17"; }
[class="35"]::before { content: "35"; }

.accueil-4 p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}


:root {
    --navy: #1a2a3a;
    --white: #ffffff;
    --gold: #c9a84c;
    --text: #444444;
    --border: #eeeeee;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.droit-social,
.rh,
.Formation,
.Rgpd {
    background: var(--white);
    padding: 60px 40px 40px;
    text-align: center;
    max-width: 860px;
    margin: 40px auto 0;
    border-radius: 4px 4px 0 0;
}

.droit-social h1,
.rh h1,
.Formation h1,
.Rgpd h1 {
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.icone {
    width: 100px;
    height: 100px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 24px;
    overflow: hidden;
}

.icone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}


.domaines-intervention {
    background: var(--white);
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 0 0 48px;
    border-radius: 0 0 4px 4px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.intervenntion {
    background-color: var(--navy);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.intervenntion h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}


.Conformité,
.Relations-sociales,
.Negociation-sociales,
.Audit-de-pratique,
.Gestion-des-dossiers-du-personnel,
.Gestion-des-performances,
.Médiation-en-cas-de-conflits,
.Évaluation-du-climat-social-et-organisationnel,
.Stratégique-des-ressources-humaines,
.Indicateurs-de-performance-RH,
.Analyse-de-vos-besoins,
.Conception-sur-mesure,
.Formation-innovantes,
.Suivi-post-formation,
.phrase-de-fin,
.Evaluation,
.Confidentialité-et-consentements,
.Sensibilisation {
    padding: 40px 60px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    
}

.domaines-intervention div:last-child {
    border-bottom: none;
}

.domaines-intervention h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: bold;
}

.domaines-intervention p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
}



.partie-1 {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
    
}

.ligne-separation {
    border: 0;
    height: 80px;
    background-color: var(--navy);
    margin: 40px 0;
}

.partie-2 {
    text-align: center;
    padding: 20px 10%;
    color: var(--text);
    margin-bottom: 150px;
}

.partie-2 h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin: 30px 0 10px;
    font-weight: bold;
}

.partie-2 p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ligne-bleu {
    background-color: var(--navy);
    padding: 25px 0;
    text-align: center;
    width: 100%;
}

.ligne-bleu h1 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}


.photo-arriere {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.Le-Cabinet {
    background-color: #1a2a3a;
    padding: 12px 0;
    text-align: center;
    width: 100%;
}

.Le-Cabinet h1 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

.photo-cabinet {
    width: 100%;
    line-height: 0;
}

.photo-cabinet img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.valeurs-cabinet {
    display: flex;
    flex-direction: column;
    padding: 60px 10%;
    background-color: #ffffff;
    text-align: center;
}

.valeur-une, .valeur-deux, .valeur-trois {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.valeur-deux {
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    margin: 20px 0;
}

.valeurs-cabinet h3 {
    font-size: 18px;
    color: #1a2a3a;
    margin-bottom: 20px;
    font-weight: bold;
}

.valeurs-cabinet p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    max-width: 300px;
}

strong {
    color: #1a2a3a;
}


.fondatrice {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 10% 80px;
    gap: 60px;
    background-color: #ffffff;
    border-top: 1px solid #d1d1d1;
}

.photo-fondatrice {
    text-align: center;
    flex-shrink: 0;
}

.photo-fondatrice img {
    width: 300px;
    height: auto;
    border-radius: 150px 150px 0 0;
    margin-bottom: 15px;
    object-fit: cover;
}

.legende-photo {
    font-size: 14px;
    color: #1a2a3a;
    font-weight: bold;
}

.texte-fondatrice {
    max-width: 700px;
}

.texte-fondatrice p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
}


.nous-rejoindre-wrapper {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

.infos-poste {
    flex: none;         
    width: 90%;          
    margin: 40px auto;    
    
    background-color: #002b45;
    text-align: center;
    color: white;
    padding: 30px 40px;
    border-radius: 8px;
}

.infos-poste h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 40px;
    border-bottom: 2px solid white;
    display: inline-block;
}

.infos-poste p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.fiche-detail h3 {
    margin: 25px 0 15px;
    color: #c9a84c;
}

.fiche-detail ul {
    margin-bottom: 25px;
    padding-left: 0;       
    list-style: none;      
    text-align: center;    
}

.fiche-detail li {
    margin-bottom: 10px;
    list-style-type: none; 
}

.formulaire-candidature {
    flex: 1;
    background-color: #ffffff;
    padding: 90px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formulaire-candidature form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formulaire-candidature label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #000;
}

.formulaire-candidature input {
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 10px 0;
    outline: none;
    margin-top: 5px;
}

.formulaire-candidature button {
    background-color: #1a2a3a;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.formulaire-candidature button:hover {
    background-color: #c9a84c;
}



.accompagnement {
    padding: 80px 10%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.container-1 {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container-1 h1 {
    background-color: #002b45;
    padding: 30px 40px;
    border-radius: 8px;
    color: white;
    margin-bottom: 40px;
    font-size: 36px;
}

.paragraphe-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.paragraphe-intro p {
    margin-bottom: 20px;
}

.image-paragraphe img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.dernier-paragraphe {
    font-size: 18px;
    color: #1a2a3a;
    max-width: 700px;
    margin-top: 20px;
}

.dernier-paragraphe p {
    margin-bottom: 15px;
}

.planification {
    background-color: #1a2a3a;
    padding: 30px 200px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 500px;
    color: white;
}

.planification h1 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.ligne-1 {
    max-width: 800px;
    margin: 25px auto 50px;
}

.trois-etapes {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 25px 100px;
}

.trois-etapes section {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.trois-etapes section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 43, 69, 0.1);
}

.trois-etapes img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #c9a84c;
    transition: transform 0.4s ease;
}

.trois-etapes section:hover img {
    transform: scale(1.05);
}

.trois-etapes h1 {
    font-size: 20px !important;
    color: #002b45;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.trois-etapes h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #c9a84c;
}

.trois-etapes p {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-top: 15px;
}



.Contact {
    background-color: #1a2a3a;
    color: white;
    padding: 100px 8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Montserrat', sans-serif;
}

.Contact > h1 {
    width: 100%;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 70px;
    letter-spacing: 2px;
}

.Lieu, .rdv, .Formulaire {
    flex: 1;
    min-width: 300px;
    padding: 0 25px;
    margin-bottom: 40px;
}

.Lieu h1, .rdv h1, .Formulaire h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #c9a84c;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.Contact p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    white-space: pre-line;
}

.Lieu img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.btn-rdv {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-rdv:hover {
    background-color: #c9a84c;
    color: #1a2a3a;
    transform: translateY(-3px);
}

.Formulaire form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Formulaire label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: #c9a84c;
    text-transform: uppercase;
}

.Formulaire input,
.Formulaire textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.Formulaire input:focus,
.Formulaire textarea:focus {
    border-bottom-color: #c9a84c;
}

.Formulaire textarea {
    height: 100px;
    resize: none;
}

.Formulaire button {
    align-self: flex-start;
    background-color: #c9a84c;
    border: none;
    color: #1a2a3a;
    padding: 14px 40px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.Formulaire button:hover {
    background-color: white;
    transform: translateY(-3px);
}



@media (max-width: 1024px) {
    nav {
        padding: 20px 40px;
    }

    .accueil-2, .accueil-3 {
        flex-direction: column;
        align-items: center;
        padding: 50px 5%;
    }

    .col-gauche, .col-droite,
    .SERVICES, .METHODOLOGIE, .RESULTATS {
        width: 100%;
        border: none;
        margin-bottom: 30px;
    }

    .trois-etapes {
        gap: 20px;
        margin-bottom: 50px;
    }

    .valeurs-cabinet {
        padding: 40px 5%;
    }

    .nous-rejoindre-wrapper {
        flex-direction: column;
    }

    .fondatrice {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .accueil-1 {
        height: 500px;
        padding-left: 5%;
        align-items: center;
        text-align: center;
    }

    .content-1 p {
        max-width: 90%;
    }

    .accueil-4 div {
        width: 90% !important;
        display: block !important;
        margin: 20px auto;
    }

    .Contact {
        padding: 60px 5%;
        flex-direction: column;
    }

    .Lieu, .rdv, .Formulaire {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .Lieu h1, .rdv h1, .Formulaire h1 {
        text-align: center;
    }

    .Lieu img {
        margin: 0 auto 20px auto;
    }

    .Formulaire button {
        align-self: center;
        width: 100%;
    }

    .trois-etapes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .trois-etapes section {
        width: 100%;
        max-width: 400px;
    }

    .photo-fondatrice img {
        width: 80%;
    }

    .infos-poste,
    .formulaire-candidature {
        padding: 40px 20px;
    }

    .infos-poste h1 {
        font-size: 2rem;
    }

    .partie-2 {
        padding: 20px 5%;
    }
        .planification {
        padding: 30px 20px;
        max-width: 100%;
        border-radius: 500px;
    }
        .ligne-1 {
        max-width: 100%;
        margin: 15px auto 30px;
        padding: 0 15px;
    }
}


@media (max-width: 480px) {
    html {
        font-size: 90%;
    }

    h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .accueil-1 {
        height: 400px !important;
    }

    .accueil-2, .accueil-3, .accueil-4,
    .Contact, .trois-etapes {
        padding: 30px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .trois-etapes img {
        width: 120px !important;
        height: 120px !important;
    }
}
