/* VARIABLES GLOBALES */
:root {
    --blue: #2A3F73;
    --green: #3CBF9B;
    --purple: #5B4AE0;
	--purple-light:#BFA0F2;
	--purple-dark:#5218B0;
    --red: #E05E4A;
    --white: #FFFFFF;
    --dark-red: #A7311D;
    --orange: #FFB300;
    --dark-grey: #2B2D2F;
    --deep-grey: #595959;
    --medium-grey: #7F7F7F;
    --pearl-grey: #DDE1E6;
	--pearl-dark-grey: #C1C8D1;
    --text-color-dark: #2B2D2F;
    --text-color-light: #DDE1E6;
    --light-bg: #DDE1E6;
    --max-width: 1000px;
    --icon-size: 60px;
    --banner-height: 590px;
	--banner-pages-height: 290px;
    /*--text-color: #FFFFFF;*/ /* Texte blanc pour contraster avec une image de fond */
}

/* COULEURS DES TEXTES */
.text-color-dark {
    color: var(--dark-grey)
}
.text-color-light {
    color: var(--pearl-grey)
}
.text-sous-titre {
	font-size: 1.6em;
	font-weight: 500;
    color: var(--dark-grey);
}
.text-sous-titre-h3 {
	font-size: 1.38em;
	font-weight: 500;
    color: var(--dark-grey);
}
.text-verbatim {
	font-size: 1.55em;
	font-weight: 540;
	font-style: italic;
	text-align: center;
	line-height: 120%;
}
.text-center {
	font-size: 1.2em;
	/*font-weight: 150;*/
	font-style: italic;
	text-align: center;
	/*line-height: 120%;*/
}







/* RESET ET TYPOGRAPHIE DE BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
	overflow-x: hidden;
    /* background-color: white; */
}

h1 {
    font-size: 2em;
    /*text-align: center;*/
    /*color: var(--dark-grey);*/
	/*color: #FFFFFF;*/
}

h2 {
    /*margin-bottom: 0.5em;*/
    /*margin-top: 0.8em;*/
    font-weight: 700;
    font-size: 2em;
    /*text-align: left;*/
    margin-bottom: 1em;
    color: var(--dark-grey);
}

p {
    color: var(--dark-grey);
    margin-top: 0.6em
}

ul {
    margin-top: 0.6em;
    margin-left: 30px;
}

li {
    color: var(--dark-grey);
}





/* UTILITAIRES DE MISE EN PAGE */
.container {
    width: 100%;
    max-width: var(--max-width); /* Limite le corps de la page à 1000px sur desktop */
    margin: 0 auto;
    padding: 0 15px; /* Padding pour les bords sur mobile */
}
.container .between{
    justify-content: space-between;
}

.section {
    padding: 3.75em 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-red {
    background-color: var(--red);
}

.bg-green {
    background-color: var(--green);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-orange {
    background-color: var(--orange);
}






/* ICONS GOOGLE */
/* Passage en SVG pour stabilité */
/* https://fonts.google.com/icons?selected=Material+Symbols+Outlined:supervised_user_circle:FILL@0;wght@300;GRAD@0;opsz@48&icon.size=72&icon.color=%23DDE1E6&icon.query=management */
/* Icons intro : blue, 72px, no fill, weight 300, grade 0, optical 48 */
/* Icons values : pearl-grey, 72px, no fill, weight 300, grade 0, optical 48 */
.material-symbols-outlined {
  font-variation-settings:
        'FILL' 1, /* 0 pour Outlined, 1 pour Filled */
        'wght' 350, /* Poids/Épaisseur (100 à 700) */
        'GRAD' 0, /* Graduation/Ombre */
        'opsz' 48; /* Taille optique (20 à 48) */
  vertical-align: middle;
}

.icon-size {
    /*color: var(--pearl-grey);*/
    /*font-size: 200px;*/     /* Taille de la police (contrôle la taille de l'icône) */
    width: 72px;/* Forcer la taille du svg*/
    height: 72px;
}

.icon-size-footer {
    width: 18px;
    height: 18px;
	/*margin-right: 6px;
	margin-bottom: -4px;*/
}

.icon-size-connexion {
    /*color: var(--pearl-grey);*/
    /*font-size: 200px;*/     /* Taille de la police (contrôle la taille de l'icône) */
    width: 38px;/* Forcer la taille du svg*/
    height: 38px;
}

/* Ronds "gris" pour les pictogrammes */
.icon {
    /*width: var(--icon-size);*/
    /*height: var(--icon-size);*/
    /*border-radius: 50%;*/
    /*background-color: #ccc;*/ 
    /*margin: 0 auto 15px;*/
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 20px;
    /* Ajoutez ici le style pour les icônes si vous utilisez une librairie comme Font Awesome */
}

.icon-connexion {
    display: flex;
    justify-content: left;
    align-items: center;
	gap: 15px;
	margin-bottom: 10px;
	margin-left: -5px;
	/*margin-right: 20px;*/
    /* Ajoutez ici le style pour les icônes si vous utilisez une librairie comme Font Awesome */
}






/* ZONES GRAPHIQUES (Pour visualiser les emplacements) */
/* Zones "rouges" pour les photos */
.photo-area .photo-main {
    background-color: #ff3333; /* Rouge */
    height: 300px; 
    margin-bottom: 20px;
}
.photo-area .photo-side,
.photo-area .photo-portrait {
    background-color: #ff3333; /* Rouge */
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
}




/* HEADER */
.header {
    background-color: white;
    padding: 15px 0;
	/* Pour un header fixe */
    /*border-bottom: 1px solid var(--medium-grey);
	position: fixed;
	top: 0; 
    width: 100%;
	z-index: 1000;*/
}

.header a {
	text-decoration: none;
}

.header .logo-area {
    display: flex;
    align-items: center;
}

.header .logo {
    height: 40px; /* Taille du logo en mobile */
    /*margin-right: 10px;*/
}

.header .container {
    /* Ajout des règles Flexbox */
    display: flex;
    justify-content: space-between; /* Pousse le logo à gauche et l'email à droite */
    align-items: center; /* Aligne verticalement au centre */
    /* On garde la largeur max et le centrage */
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header-email-link {
    /* Style de base pour le lien (couleur, taille, etc.) */
    color: var(--text-color-dark); /* Couleur du texte du lien */
    text-decoration: none; /* Enlève le soulignement */
    /*font-weight: 700;*/ /* Met le texte en gras (optionnel) */
    font-size: 0.82em;
}

.header-link-area a {
	/*margin-bottom: -25px;*/
	color: var(--text-color-dark);
	text-decoration: none;
	font-size: 1.15em;
	font-weight: 800;
	letter-spacing: 0.1rem;
	margin-left: 30px;
}

.header-link-area a.active {
	padding-bottom: 4px;
	border-bottom: 5px solid var(--green);
}

.header-link {
    color: var(--text-color-dark);
    text-decoration: none;
    font-size: 1.15em;
	font-weight: 800;
	letter-spacing: 0.1rem;
	margin-left: 30px;
}






/* 1. La DIV Bannière (Hero) */
.hero-banner {
    /* Dimensions requises */
    width: 100%; 
    height: var(--banner-height); 
    
    /* Image de fond */
    background-image: url('images/photos/bg-intro.jpg');
    background-size: cover; /* Assure que l'image couvre toute la DIV */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat;
    
    /* Centrage du contenu (le titre) */
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    
    /* Ajout d'un overlay pour améliorer la lisibilité du titre (optionnel) */
    position: relative;
    overflow: hidden;
}

/* Création d'un overlay sombre semi-transparent (Optionnel) */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4);*/ /* Overlay noir à 40% de transparence */
    z-index: 1; /* S'assure que l'overlay est derrière le titre */
}

/* 2. Le Titre au centre */
.hero-banner h1 {
    /*color: var(--pearl-grey);*/
	color: #FFFFFF;
    font-size: 3em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre pour une meilleure visibilité */
    z-index: 2; /* S'assure que le titre est au-dessus de l'overlay */
    padding: 0 20px; /* Évite que le texte ne touche les bords sur mobile */
}

/* Ajustement pour le responsive (optionnel) */
@media (max-width: 600px) {
    .hero-banner {
        height: 300px; /* Réduire la hauteur sur les petits écrans */
    }
    .hero-banner h1 {
        font-size: 2em;
    }
}



.hero-banner-offres {
    /* Dimensions requises */
    width: 100%; 
    height: var(--banner-pages-height); 
    
    /* Image de fond */
    background-image: url('images/photos/bg-offres.jpg');
    background-size: cover; /* Assure que l'image couvre toute la DIV */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat;
    
    /* Centrage du contenu (le titre) */
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    
    /* Ajout d'un overlay pour améliorer la lisibilité du titre (optionnel) */
    position: relative;
    overflow: hidden;
}

/* Création d'un overlay sombre semi-transparent (Optionnel) */
.hero-banner-offres::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4);*/ /* Overlay noir à 40% de transparence */
    z-index: 1; /* S'assure que l'overlay est derrière le titre */
}

/* 2. Le Titre au centre */
.hero-banner-offres h1 {
    /*color: var(--pearl-grey);*/
	color: #FFFFFF;
    font-size: 3em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre pour une meilleure visibilité */
    z-index: 2; /* S'assure que le titre est au-dessus de l'overlay */
    padding: 0 20px; /* Évite que le texte ne touche les bords sur mobile */
}

/* Ajustement pour le responsive (optionnel) */
@media (max-width: 600px) {
    .hero-banner-offres {
        height: 180px; /* Réduire la hauteur sur les petits écrans */
    }
    .hero-banner-offres h1 {
        font-size: 2em;
    }
}



.hero-banner-contact {
    /* Dimensions requises */
    width: 100%; 
    height: var(--banner-pages-height); 
    
    /* Image de fond */
    background-image: url('images/photos/bg-contact.jpg');
    background-size: cover; /* Assure que l'image couvre toute la DIV */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat;
    
    /* Centrage du contenu (le titre) */
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    
    /* Ajout d'un overlay pour améliorer la lisibilité du titre (optionnel) */
    position: relative;
    overflow: hidden;
}

/* Création d'un overlay sombre semi-transparent (Optionnel) */
.hero-banner-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4);*/ /* Overlay noir à 40% de transparence */
    z-index: 1; /* S'assure que l'overlay est derrière le titre */
}

/* 2. Le Titre au centre */
.hero-banner-contact h1 {
    /*color: var(--pearl-grey);*/
	color: #FFFFFF;
    font-size: 3em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre pour une meilleure visibilité */
    z-index: 2; /* S'assure que le titre est au-dessus de l'overlay */
    padding: 0 20px; /* Évite que le texte ne touche les bords sur mobile */
}

/* Ajustement pour le responsive (optionnel) */
@media (max-width: 600px) {
    .hero-banner-contact {
        height: 180px; /* Réduire la hauteur sur les petits écrans */
    }
    .hero-banner-contact h1 {
        font-size: 2em;
    }
}





/* SECTION HERO (Introduction) */
.hero .container {
    display: flex;
    /*flex-wrap: wrap-reverse;*/ /* Texte avant image sur mobile/tablette */
	flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.hero .text-content,
.hero .photo-area {
    width: 100%;
}

.pictograms {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    /*margin-top: 30px;*/
    text-align: center;
}

.pictograms .item {
    flex: 1 1 250px; /* Permet un alignement sur une ou deux lignes */
}

.text-verbatim-content {
    width: 100%;
	padding: 0 30px 0 30px;
	margin-top: 0px;
}

.margin-60 {
	margin-top: 60px;
}

.margin-100 {
	margin-top: 100px;
}

.text-75 {
	/*display: flex;*/
    width: 75%;
	align-content: center;
	/*text-align: center;
	justify-content: center;
	align-items: center;*/
	margin: 60px auto 0px;
	display: block;
}






/* SECTION BLOC image-texte PROBLEMATIQUES
.section-color-texte { 
	background-color: var(--pearl-grey);
    display: flex; 
    align-items: center; 
    padding: 60px 0;
}

.bloc-texte-blanc-right {
    background-color: #ffffff;
    padding: 30px;
    align-items: left; 
    border-bottom: solid 5px var(--red);
    width: 90%; 
    max-width: 500px;
    margin: 0 auto;
}
*/






/* SECTION BLOC image-texte RECURRENT */
.section-image-texte {
    background-image: url('images/photos/bg-specifique.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: var(--section-height);
    
    /* On retire le centrage ici car il sera géré différemment sur desktop et mobile */
    display: flex; 
    /*justify-content: left;*/
    align-items: center; 
    padding: 60px 0;
}

/* 2. Style du BLOC de texte (Mobile : Centré avec marges extérieures) */
.bloc-texte-blanc {
    /*background-color: rgba(255, 255, 255, 0.95);*/
    /*background-color: var(--pearl-grey);*/
    background-color: #ffffff;
    padding: 30px;
    align-items: left; 
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
    border-bottom: solid 5px var(--red);
    
    /* MOBILE : Largeur à 90% et centrage automatique avec "margin: 0 auto" */
    width: 90%; 
    max-width: 500px;
    margin: 0 auto; /* Centrage horizontal du bloc (fonctionne car width < 100%) */
}










/* SECTION COMPLEMENTARY HELP */
.complementary-help .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.complementary-help .text-content,
.complementary-help .photo-area {
    width: 100%;
}

.support-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.support-items .item {
    flex: 1 1 250px;
}





/* STYLES DES BOUTONS DANS LA SECTION ENTREPRISES */
.action-btn {
    /* Mise en forme de base */
    display: inline-block;
    padding: 12px 25px; /* Espacement intérieur */
    margin: 10px; /* Espace entre les deux boutons */
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    
    /* COULEUR DE FOND ET TEXTE (Adapter si la section est verte) */
    background-color: var(--red);
    color: var(--pearl-grey);
    
    /* LA FORME RECTANGLE ARRONDI (Demi-sphères) */
    /* Utilisez une valeur très élevée (ex: 999px) pour garantir des bords circulaires, quelle que soit la taille */
    border-radius: 999px; 
    
    /* Optionnel : transition pour un effet visuel au survol */
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: var(--dark-red); /* Couleur plus sombre au survol */
}

/* Styles spécifiques pour le bouton téléphone (si nécessaire) */
.phone-action-btn {
    background-color: var(--red); /* Une couleur d'appel pour se distinguer */
}
.phone-action-btn:hover {
    /*background-color: #C04A3C;*/
	background-color: var(--dark-red);
}

.phone-visible-btn {
    /* Le numéro affiché doit avoir le même style */
    background-color: var(--red);
}

.entreprises-actions {
    /* Centre les éléments de type 'inline-block' (nos boutons) */
    text-align: center;
    /* Ajoute un peu de marge au-dessus des boutons */
    margin-top: 30px;
}

#entreprises .entreprises-actions {
    text-align: center;
}









/* SECTION APPROCHE */
.approches-list ul {
    list-style: none;
    padding: 0;
    columns: 2; /* Affichage en deux colonnes sur desktop */
    max-width: 800px;
    margin: 0 auto;
}

.approches-list li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
}

.approches-list li::before {
    content: "•";
    color: var(--red);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}







/* SECTION BLOC image-texte PEDAGOGIE */
.section-2-blocs {
    background-image: url('images/photos/bg-pedagogie.jpg');
    background-position: center;
	/*background-color: var(--pearl-dark-grey);*/
	/*background-color: var(--purple-dark);*/
    min-height: var(--section-height);
	padding: 3.75em 0;
    
    /* On retire le centrage ici car il sera géré différemment sur desktop et mobile */
    display: flex; 
    /*justify-content: left;*/
    align-items: center; 
    padding: 60px 0;
	justify-content: space-between;
}

.bloc-blanc-small {
    background-color: var(--white);
    padding: 30px;
    border-bottom: solid 5px var(--purple);
    
    /* MOBILE : Largeur à 90% et centrage automatique avec "margin: 0 auto" */
    width: 90%; 
    max-width: 400px;
    margin: 0 auto; /* Centrage horizontal du bloc (fonctionne car width < 100%) */
}

.pedagogie-content {
    display: flex;
    flex-direction: column; /* Par défaut : empilement vertical (mobile) */
    gap: 20px; /* Ajoute un espace entre les deux blocs sur mobile */
    margin-top: 30px;
}






/* SECTION BLOC image-texte FINANCEMENT */
/* Même concept que PEDAGOGIE */
.section-2-blocs-white {
	background-color: var(--white);
    min-height: var(--section-height);
	padding: 3.75em 0;
    display: flex; 
    align-items: center; 
    padding: 60px 0;
	justify-content: space-between;
}

.bloc-blanc-white {
    background-color: var(--white);
    /*padding: 30px;*/
    /*border-bottom: solid 5px var(--orange);*/
	/*box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);*/ 
    width: 100%; 
    max-width: 400px;
    margin: 0 auto; 
}

.financement-content {
    display: flex;
    flex-direction: column; 
    gap: 20px; 
    margin-top: 30px;
}







/* SECTION VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
    margin-top: 30px;
}





/* SECTION QUI SUIS-JE */
.about-me .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-me .photo-area {
    width: 100%;
    max-width: 300px; /* Limiter la largeur de la zone photo sur desktop */
    margin: 0 auto;
    text-align: center;
}

.about-me .text-content {
    flex-grow: 1;
}

.about-me .certifications {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.about-me .cert-item {
    background-color: var(--blue);
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.contact-info {
    margin-top: 20px;
    margin-bottom: 60px;
    align-text: right;
}

.contact-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--red);
}








/* SECTION CONTACT */
.section-contact {
    background-image: url('images/photos/bg-about.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: var(--section-height);
    
    /* On retire le centrage ici car il sera géré différemment sur desktop et mobile */
    display: flex; 
    justify-content: flex-end;
    align-items: right;
    padding: 60px 0;
}

.section-contact h3 {
	margin-bottom: 30px;
}

/* 2. Style du BLOC de texte (Mobile : Centré avec marges extérieures) */
.bloc-contact {
    /*background-color: rgba(255, 255, 255, 0.95);*/
    /*background-color: var(--pearl-grey);*/
    background-color: #ffffff;
    padding: 30px;
    align-items: right;
	/*margin-left: auto;*/
	/*margin-right: 20px;*/
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
    border-bottom: solid 5px var(--green);
    
    /* MOBILE : Largeur à 90% et centrage automatique avec "margin: 0 auto" */
    width: 90%; 
    max-width: 600px;
    margin: 0 auto; /* Centrage horizontal du bloc (fonctionne car width < 100%) */
}

.bloc-contact h3 {
	text-align: right;
}

.contact-photo {
	align-items: right;
	/*width: 160px;*/
	/*height: 160px;*/
	border-radius: 50%;
	object-fit: cover;
	text-align: right;
}

.contact-align-right {
	text-align: right;
}

.contact-certification {
	/*align-items: right;*/
	margin-top: 40px;
	text-align: right;
}

.contact-badge {
	width: 65px;
	/*height: 20%;*/
	margin-right: 20px;
}








/* FOOTER */

.footer {
    background-color: var(--dark-grey);
    color: white;
    padding: 20px 0;
    font-size: 0.9em;
    padding: 20px 0;
}

/* Conteneur Flexbox qui aligne les deux DIV */
.footer-content {
    display: flex;
    flex-direction: column; /* Mobile : les deux éléments s'empilent */
    align-items: center; /* Mobile : Centre les éléments horizontalement */
    text-align: center; /* Mobile : Centre le texte */
    gap: 15px; /* Espace entre le logo et le texte sur mobile */
}

.footer-logo-area img {
    height: 40px; /* Ajustez la taille du logo */
	text-decoration: none;
}

.footer-logo-area a {
	text-decoration: none;
}

/* Texte dans le footer */
.footer-text-area p {
    margin: 5px 0;
}

.footer-center {
    text-align: center;
    font-size: 0.7em;
    margin-top: 60px;
}

.footer-link {
    color: var(--text-color-light);
    text-decoration: none;
	display: inline-block;
    vertical-align: middle;
}

.footer-icon-center {
	text-align: center;
}

.footer-text-area #call-action-p .icon-size-footer {
    /* 1. ALIGNEMENT VERTICAL : Essentiel pour centrer l'icône sur la ligne de texte */
    vertical-align: middle; 
    
    /* 2. ESPACEMENT : Ajoute un petit espace entre le pictogramme et le texte */
    margin-right: 5px; 
    
    /* 3. TAILLE : Définir une taille relative si ce n'est pas déjà fait */
    width: 1.2em;  /* 1.2 fois la taille de police du texte environ */
    height: 1.2em;
}

/* 4. Alignement du lien "Appeler" (souvent déjà aligné, mais c'est une sécurité) */
.footer-text-area #call-action-p #show-phone-link {
    vertical-align: middle;
}









/* PAGE OFFRES */
.section-formations {
	min-height: var(--section-height);
	padding: 3.75em 0;
    
    /* On retire le centrage ici car il sera géré différemment sur desktop et mobile */
    display: flex; 
    /*justify-content: left;*/
    align-items: center; 
    padding: 60px 20px;
	justify-content: space-between;
}

.bloc-formations {
    /*background-color: #ffffff;*/
	background-color: var(--pearl-grey);
    padding: 30px;
    border-bottom: solid 5px var(--dark-grey);
	width: 300px;
    
    /* MOBILE : Largeur à 90% et centrage automatique avec "margin: 0 auto" */
    width: 90%; 
    max-width: 400px;
    margin: 0 auto; /* Centrage horizontal du bloc (fonctionne car width < 100%) */
}

.formations-content {
    display: flex;
    flex-direction: column; /* Par défaut : empilement vertical (mobile) */
    gap: 20px; /* Ajoute un espace entre les deux blocs sur mobile */
    margin-top: 30px;
	text-align: left;
}

.offres-items {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 30px;
    text-align: left;
}

.offres-items .item {
    flex: 1 1 280px;
}

.section-conseil {
	background-color: var(--orange);
	min-height: var(--section-height);
	padding: 3.75em 0;
    
    /* On retire le centrage ici car il sera géré différemment sur desktop et mobile */
    display: flex; 
    /*justify-content: left;*/
    align-items: center; 
    padding: 60px 20px;
	justify-content: space-between;
}

.bloc-conseil {
    /*background-color: #ffffff;*/
	background-color: var(--pearl-grey);
    padding: 30px;
    border-bottom: solid 5px var(--dark-grey);
	width: 300px;
    
    /* MOBILE : Largeur à 90% et centrage automatique avec "margin: 0 auto" */
    width: 90%; 
    max-width: 400px;
    margin: 0 auto;
}

.conseil-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
	text-align: left;
}

.contact-actions {
    /* Centre les éléments de type 'inline-block' (nos boutons) */
    text-align: center;
    /* Ajoute un peu de marge au-dessus des boutons */
    /*margin-top: 30px;*/
}

.title-group {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Ici, vous réglez précisément l'écart entre le h2 et le p */
}

.title-group h2, 
.title-group p {
    /*margin: 0;*/ /* On annule les marges par défaut pour maîtriser l'espace via le gap */
}





/* PAGE CONTACT */
.section-connexion {
	min-height: var(--section-height);
	padding: 3.75em 0;
    
    /* On retire le centrage ici car il sera géré différemment sur desktop et mobile */
    display: flex; 
    /*justify-content: left;*/
    align-items: center; 
    padding: 60px 20px;
	justify-content: space-between;
}

.bloc-connexion {
    /*background-color: #ffffff;*/
	background-color: var(--pearl-grey);
    padding: 30px;
    border-bottom: solid 5px var(--red);
	width: 300px;
    
    /* MOBILE : Largeur à 90% et centrage automatique avec "margin: 0 auto" */
    width: 90%; 
    max-width: 400px;
    margin: 0 auto; /* Centrage horizontal du bloc (fonctionne car width < 100%) */
}

.connexion-content {
    display: flex;
    flex-direction: column; /* Par défaut : empilement vertical (mobile) */
    gap: 20px; /* Ajoute un espace entre les deux blocs sur mobile */
    margin-top: 30px;
	text-align: left;
}

























/* MEDIA QUERIES POUR DESKTOP (A partir de 768px pour passer en colonnes) */
@media (min-width: 768px) {
    /* Sections avec 2 colonnes */
    .hero .text-content,
    .hero .photo-area,
    .complementary-help .text-content,
    .complementary-help .photo-area,
    .about-me .photo-area,
    .about-me .text-content {
        /*width: calc(50% - 15px);*/ /* Deux colonnes égales avec espacement */
    }

	.text-verbatim {
		font-size: 2.25em;
		font-weight: 560;
		font-style: italic;
		text-align: center;
		line-height: 120%;
	}

	.header .logo {
        height: 70px; /* Taille pour desktop */
    }

    /* Ordre de la section Hero pour Image à droite / Texte à gauche */
    .hero .container {
        flex-wrap: wrap; 
    }

    /* La photo principale de Hero doit s'étendre sur les 50% de la colonne */
    .hero .photo-area .photo-main {
        height: 400px;
    }

	.header-email-link {
    font-size: 1em;
	}
	
	.header-link {
    color: var(--text-color-dark);
    text-decoration: none;
    font-size: 1.25em;
	font-weight: 800;
	letter-spacing: 0.1rem;
	margin-left: 30px;
	}

    /* Photo de la section complémentaire (image à droite) */
    .complementary-help .photo-area {
        order: 2;
    }
    .complementary-help .text-content {
        order: 1;
    }

    /* Le "Qui suis-je" avec le portrait à gauche */
    .about-me .photo-area {
        order: 1;
        margin: 0;
    }
    .about-me .text-content {
        order: 2;
    }

	.section-image-texte {
        justify-content: flex-start; /* Aligne les enfants (le bloc blanc) à gauche */
        /* Si vous voulez que le bloc soit centré verticalement, 'align-items: center' doit rester */
    }

	.bloc-texte-blanc {
        /* Largeur 50% du corps (500px) */
        width: 50%;
        max-width: 500px;
        
        /* DESKTOP : Annuler le centrage automatique et définir une marge gauche/droite si besoin */
        /* margin: 0; */ /* Annule le '0 auto' du mobile */
        /* margin-left: 20px; */ /* Ajout d'une petite marge pour ne pas coller l'extrême gauche */
        /* Vous pouvez enlever cette ligne si vous voulez qu'il soit collé au bord gauche */
		margin: 0 auto 0 160px;
    }

	.bloc-texte-blanc-right {
        width: 50%;
        max-width: 500px;
		margin: 0 160px 0 auto;
    }
	
	.bloc-contact {
        /* Annule le centrage mobile */
        margin-left: auto; /* Pousse le bloc à droite */
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
	}
	
	.contact-photo {
	text-align: right;
	}

	.contact-align-right {
	text-align: right;
	}

	.bloc-contact h3 {
	text-align: right;
	}
	
	.contact-certification {
	text-align: right;
	}

	.footer-content {
        flex-direction: row; /* Desktop : met les deux éléments côte à côte */
        justify-content: space-between; /* Pousse le logo à gauche et le texte à droite */
        align-items: center; /* Aligne verticalement au centre */
        text-align: left; /* Réinitialise l'alignement du texte du conteneur */
        gap: 0; /* Pas de gap nécessaire en mode "space-between" */
    }
    
    .footer-logo-area {
        flex-shrink: 0; /* Assure que le logo ne rétrécit pas */
    }
    
    .footer-text-area {
        /* Force le texte à s'aligner à droite dans la zone de texte de droite */
        text-align: right;
    }
	
	.pedagogie-content {
        flex-direction: row; /* Les place sur la même ligne */
        justify-content: space-between; /* Répartit l'espace entre eux */
    }

    .bloc-blanc-small {
        /* Largeur pour qu'ils tiennent côte à côte avec un gap de 20px */
        width: calc(50% - 10px); /* 50% - la moitié du gap (20px/2 = 10px) */
        max-width: 400px;
        margin: 0; /* Annule le '0 auto' du mobile pour l'alignement flexbox */
    }
	
	.financement-content {
		flex-direction: row; /* Les place sur la même ligne */
		justify-content: space-between; /* Répartit l'espace entre eux */
    }

    .bloc-blanc-white {
        /* Largeur pour qu'ils tiennent côte à côte avec un gap de 20px */
        width: calc(50% - 10px); /* 50% - la moitié du gap (20px/2 = 10px) */
        max-width: 400px;
        margin: 0; /* Annule le '0 auto' du mobile pour l'alignement flexbox */
    }
	
	
	/* PAGE OFFRES Desktop */
	.formations-content {
        display: flex;
		flex-direction: row; /* Aligne les blocs horizontalement */
		flex-wrap: wrap; /* Permet le passage à la ligne*/
		/* v1 : Distribue l'espace entre les blocs + Ajoute un espace de 20px entre la 1ère et la 2ème ligne */
        /*justify-content: space-between;*/ 
		/*row-gap: 20px;*/
		/* v2 : Aligne tout à gauche + Crée un espace fixe de 20px entre tous les blocs */
		justify-content: flex-start; 
		row-gap: 20px;
    }
	
	.bloc-formations {
        /* calc(50% - 10px) : 50% de la largeur moins la moitié du gap (10px) */
        width: calc(50% - 10px);
		/*margin: 0 20px;*/
    }

	.conseil-content {
        display: flex;
		flex-direction: row; /* Aligne les blocs horizontalement */
		flex-wrap: wrap; /* Permet le passage à la ligne*/
        justify-content: space-between; /* Distribue l'espace entre les blocs */
		row-gap: 20px; /* Ajoute un espace de 20px entre la 1ère et la 2ème ligne */
    }

	.bloc-conseil {
        /* calc(50% - 10px) : 50% de la largeur moins la moitié du gap (10px) */
        width: calc(50% - 10px);
    }
	
	.connexion-content {
        flex-direction: row; /* Aligne les blocs horizontalement */
        justify-content: space-between; /* Distribue l'espace entre les blocs */
    }

	.bloc-connexion {
        /* calc(50% - 10px) : 50% de la largeur moins la moitié du gap (10px) */
        width: calc(50% - 10px); 
    }
}

/* MEDIA QUERY pour les très petits écrans si nécessaire */
@media (max-width: 480px) {
    .approches-list ul {
        columns: 1; /* Une seule colonne pour les difficultés */
    }
    h2 {
        font-size: 1.5em;
    }
	/*.header-link {
		font-size: 0.78em;
	}*/
	.header-link {
    color: var(--text-color-dark);
    text-decoration: none;
    font-size: 0.95em;
	font-weight: 800;
	letter-spacing: 0.1rem;
	margin-left: 30px;
	}
}