/* ========================================
   CSS MODIFIÉ POUR MATCHER LE PDF EXACTEMENT
   ======================================== */

/* Variables de couleurs */
:root {
    --color-beige-light: #f5f3ef;
    --color-beige: #e8e4dc;
    --color-beige-dark: #d4cfc4;
    --color-blue-dark: #2c3e50;
    --color-blue: #4a6fa5;
    --color-blue-light: #6b8caf;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-border: #ddd;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-beige-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-blue-dark);
}

/* Container principal - UNIFORMISÉ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header / Navigation */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.site-logo {
    font-size: 18px;
    font-weight: normal;
    color: var(--color-blue-dark);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--color-text);
    font-size: 14px;
    position: relative;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a5276;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1a5276;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

/* Style pour la page active */
.nav-menu a.active {
    color: #1a5276;
    font-weight: 600;
}

/* Sélecteur de langue */
.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switcher a {
    padding: 5px 15px;
    background-color: var(--color-beige);
    color: var(--color-text);
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.lang-switcher a.active {
    background-color: var(--color-blue-dark);
    color: var(--color-white);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 40px 20px;
    background-color: var(--color-beige-light);
}

.page-title {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 10px;
    text-transform: lowercase;
    font-style: italic;
}

.page-main-title {
    font-size: 36px;
    color: var(--color-blue-dark);
    font-weight: normal;
    margin-bottom: 20px;
}

.page-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* =============================================
   SECTIONS D'INTRODUCTION (TEXTE CENTRÉ UNIQUEMENT)
   ============================================= */

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 40px;
}

.content-section h2 {
    font-size: 26px;
    color: var(--color-blue-dark);
    margin: 60px 0 30px 0;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 15px;
}

.content-section h2:first-child {
    margin-top: 20px;
}

.content-section h3 {
    font-size: 20px;
    color: var(--color-blue);
    margin: 30px 0 15px;
    font-weight: normal;
}

.content-section p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.content-section strong {
    color: var(--color-blue-dark);
    font-weight: 600;
}

.content-section em {
    font-style: italic;
    color: var(--color-text-light);
}

/* SECTIONS AVEC IMAGE */
.section-with-image {
    margin: 40px 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.section-with-image > div:first-child {
    flex: 2;
}

.section-with-image > div:last-child {
    flex: 1;
}

.section-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* =============================================
   MÉTHODES DE MASSAGE MÉDICAL
   ============================================= */

.method-section {
    margin: 60px 0;
    padding: 0;
}

.method-section h3 {
    font-size: 24px;
    color: var(--color-blue-dark);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 20px;
}

.method-content > div:first-child {
    order: 1;
}

.method-content > div:last-child {
    order: 2;
}

.method-content.reverse > div:first-child {
    order: 2;
}

.method-content.reverse > div:last-child {
    order: 1;
}

.method-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.method-content p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

/* Lire plus / Lire moins */
.read-more-content {
    display: none;
    margin-top: 20px;
}

.read-more-content.active {
    display: block;
}

.read-more-btn {
    display: inline-block;
    margin: 20px 0 40px 0;
    padding: 10px 25px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--color-blue-dark);
}

.read-more-btn span {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-btn.active span {
    transform: rotate(180deg);
}

/* Séparateurs */
.separator-big {
    width: 60%;
    height: 2px;
    background-color: var(--color-blue);
    margin: 60px auto;
    opacity: 0.3;
}

.separator-small {
    width: 30%;
    height: 1px;
    background-color: var(--color-blue);
    margin: 40px auto;
    opacity: 0.2;
}

/* Encadré prix / info */
.info-box {
    background-color: #fff3cd;
    border: 2px solid #856404;
    padding: 30px;
    margin: 60px 0;
    border-radius: 8px;
}

.info-box h2 {
    color: #856404;
    margin-bottom: 20px;
    text-align: left;
}

.info-box h3 {
    color: #856404;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-top: 12px;
    max-width: 260px;
    text-align: center !important;
    text-justify: none;
    word-spacing: normal;
}



/* Footer */
.site-footer {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.site-footer p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Utilitaires */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

/* ========================================
   CSS POUR PAGE D'ACCUEIL
   ======================================== */

.hero-accueil {
    padding: 60px 40px 80px;
    background-color: var(--color-beige-light);
}

.hero-accueil .container {
    max-width: 1200px;
}

.page-label-accueil {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
    text-align: center;
}

/* Logo centré */
.hero-logo-container {
    text-align: center;
    margin: 0 auto 30px;
    width: 100%;
}

.hero-logo {
    height: 120px;
    margin: 0 auto 20px;
}

/* LOGO SPÉCIFIQUE PAGE ACCUEIL - À GAUCHE AU-DESSUS DU TITRE */
.hero-logo-accueil {
    height: 100px !important;
    max-width: 100px !important;
    width: auto !important;
    margin: 0 0 30px 0 !important;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hero-logo-accueil {
    height: 100px !important;
    max-width: 100px !important;
    width: auto !important;
    margin: 0 0 20px 0 !important;
    align-self: flex-start;
}

.hero-subtitle-accueil {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 20px;
}

.hero-image {
    flex: 0 0 400px;
}

.person-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Welcome Section */
.welcome-accueil {
    padding: 40px 40px 60px;
    background-color: var(--color-white);
    text-align: left;
    width: 100%;
}

.welcome-accueil h2 {
    font-size: 24px;
    color: var(--color-blue-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.welcome-accueil p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-phone-accueil {
    font-weight: 600;
    color: var(--color-blue-dark);
    margin-top: 20px;
}

/* Section "De quoi as-tu besoin" */
.besoin-section {
    padding: 60px 40px;
    background-color: var(--color-beige-light);
}

.besoin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.besoin-text h2 {
    font-size: 24px;
    color: var(--color-blue-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.besoin-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.besoin-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Services Section Accueil */
/* Services Section Accueil - VERSION ALIGNÉE EN LIGNE */
.services-accueil {
    padding: 80px 40px 100px;
    text-align: center;
    background-color: var(--color-white);
    width: 100%;
}

.services-logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
}

.services-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-title-main {
    font-size: 28px;
    color: var(--color-blue-dark);
    margin-bottom: 60px;
    font-weight: normal;
}

/* Grille 3 colonnes alignées en ligne */
.services-triangle-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: start;
}



.service-item-accueil {
    text-decoration: none;
    color: var(--color-text);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    width: 100%;
}

.service-item-accueil:hover {
    transform: translateY(-10px);
}

.service-logo-small {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item-accueil h3 {
    font-size: 20px;
    color: var(--color-blue-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Texte de description : centré et justifié */
.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-top: 12px;
    text-align: justify;
    text-align-last: center;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
}

/* ========================================
   CSS POUR PAGE "À PROPOS"
   ======================================== */

.content-with-photo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.content-with-photo h2 {
    font-size: 20px;
    color: var(--color-blue-dark);
    margin: 0 0 25px 0;
    font-weight: 600;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
}

.content-with-photo p {
    margin-bottom: 20px;
}

.content-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Timeline des formations */
.timeline {
    margin: 60px 0;
    padding: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    font-weight: 600;
    color: var(--color-blue);
    font-size: 15px;
    text-align: right;
    padding-right: 20px;
    border-right: 3px solid var(--color-blue);
}

.timeline-content {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* ========================================
   CSS POUR PAGE "THÉRAPIE ÉNERGÉTIQUE" - LOGO CENTRÉ
   ======================================== */

.page-header-simple {
    text-align: center;
    padding: 40px 40px 20px;
    background-color: var(--color-beige-light);
}

.page-header-simple .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header-simple .hero-logo-container {
    text-align: center;
    margin: 0 auto 20px;
    width: 100%;
}

.page-header-simple .hero-logo {
    margin: 0 auto;
    height: 120px;
}

.page-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.page-subtitle {
    font-size: 16px;
    color: var(--color-text);
    margin-top: 20px;
}

/* Content Section Thérapie - ESPACE RÉDUIT */
.content-section-therapie {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 80px;
}

.content-section-therapie h2 {
    font-size: 28px;
    color: var(--color-blue-dark);
    margin: 40px 0 30px 0;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 15px;
}

.content-section-therapie h2:first-child {
    margin-top: 20px;
}

.content-section-therapie h3 {
    font-size: 22px;
    color: var(--color-blue-dark);
    margin: 40px 0 25px 0;
    font-weight: 600;
    font-style: italic;
}

.content-section-therapie h4 {
    font-size: 18px;
    color: var(--color-blue-dark);
    margin: 30px 0 20px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section-therapie p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--color-text);
}

.content-section-therapie strong {
    color: var(--color-blue-dark);
    font-weight: 600;
}

.content-section-therapie a {
    color: var(--color-blue);
    text-decoration: underline;
}

.content-section-therapie a:hover {
    color: var(--color-blue-dark);
}

/* Sections avec image à gauche */
.section-with-image-left {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
}

.section-image-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Sections avec image à droite */
.section-with-image-right {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
}

/* Séparateur thérapie */
.separator-therapie {
    width: 60%;
    height: 2px;
    background-color: var(--color-blue);
    margin: 60px auto;
    opacity: 0.3;
}

/* Video container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Citations centrées */
.centered-quotes {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.quote-italic {
    font-style: italic;
    font-size: 18px;
    color: var(--color-blue-dark);
    margin-bottom: 15px;
}

/* ========================================
   CSS POUR PAGE "MENTAL COACHING" - LOGO CENTRÉ
   ======================================== */

.page-header-mental {
    text-align: center;
    padding: 40px 40px 20px;
    background-color: var(--color-beige-light);
}

.page-header-mental .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header-mental .hero-logo-container {
    text-align: center;
    margin: 0 auto 20px;
    width: 100%;
}

.page-header-mental .hero-logo {
    margin: 0 auto;
    height: 120px;
}

.page-main-title-mental {
    font-size: 32px;
    color: var(--color-blue-dark);
    font-weight: normal;
    margin: 20px auto 30px;
    max-width: 800px;
    line-height: 1.4;
}

.hero-image-mental {
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-mental img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Content Section Mental - ESPACE RÉDUIT */
.content-section-mental {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 80px;
}

.content-section-mental h2 {
    font-size: 26px;
    color: var(--color-blue-dark);
    margin: 40px 0 30px 0;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 15px;
}

.content-section-mental h2:first-child {
    margin-top: 20px;
}

.content-section-mental h3 {
    font-size: 20px;
    color: var(--color-blue-dark);
    margin: 40px 0 25px 0;
    font-weight: 600;
    font-style: italic;
}

.content-section-mental p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;

}

.content-section-mental strong {
    font-weight: 600;
}

/* Image avec texte superposé */
.image-with-overlay {
    position: relative;
    margin: 60px 0;
}

.image-with-overlay img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.overlay-text-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 100, 100, 0.85);
    color: white;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
}

.overlay-text-middle {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(255, 100, 100, 0.85);
    color: white;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 5px;
}

.overlay-text-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(200, 50, 50, 0.85);
    color: white;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

/* Image avec overlay vert */
.image-with-overlay-positive {
    position: relative;
    margin: 60px 0;
}

.image-with-overlay-positive img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.overlay-green-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(50, 150, 50, 0.9);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
}

.overlay-green-main {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(50, 180, 50, 0.9);
    color: white;
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 5px;
}

/* Encadré vert */
.green-box {
    background-color: rgba(50, 180, 50, 0.15);
    border-left: 5px solid #32b432;
    padding: 30px;
    margin: 40px 0;
    border-radius: 5px;
}

.green-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Section avec image de fond */
.section-with-bg-image {
    margin: 60px 0;
}

.bg-image-wrapper {
    position: relative;
    width: 100%;
}

.bg-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.bg-text-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
}

.bg-text-overlay h3 {
    font-size: 24px;
    color: white;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.read-more-btn-white {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn-white:hover {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.bg-content {
    background-color: #f8f9fa;
    padding: 40px;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
}

/* Section pardon */
.section-pardon {
    margin: 60px 0;
}

.pardon-image {
    width: 100%;
    margin-bottom: 40px;
}

.pardon-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Section Prix */
.prix-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid var(--color-blue);
}

.prix-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.prix-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--color-border);
    font-size: 15px;
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Séparateur mental */
.separator-mental {
    width: 60%;
    height: 2px;
    background-color: var(--color-blue);
    margin: 60px auto;
    opacity: 0.3;
}

/* Section photo fixe */
.content-with-photo-fixed {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.photo-column-fixed {
    position: sticky;
    top: 100px;
    align-self: start;
}

.content-photo-fixed {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.text-column-fixed h2 {
    font-size: 20px;
    color: var(--color-blue-dark);
    margin: 0 0 25px 0;
    font-weight: 600;
    text-align: left;
}

.text-column-fixed p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* ========================================
   TRIANGLE GRID SERVICES
   ======================================== */

.services-section-triangle {
    padding: 80px 40px 120px;
    background-color: transparent;
}

.triangle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.triangle-title {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    font-weight: normal;
    margin: 0;
    padding: 0 40px;
    align-self: center;
    z-index: 1;
}

.card-top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.card-top-right {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
}

.card-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
}

.service-card-triangle {
    text-decoration: none;
    color: #333;
    display: block;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-triangle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card-image-triangle {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.service-card-image-triangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-triangle:hover .service-card-image-triangle img {
    transform: scale(1.08);
}

.service-card-triangle h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

.service-card-triangle .service-description {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.services-triangle-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 60px auto;
    max-width: 960px;
    margin: 0 auto;
    gap: 0 40px;
}

.service-top {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

.service-bottom-left {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
}

.service-bottom-right {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-logo-accueil {
        margin: 0 auto 20px auto !important;
    }
    
    .hero-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .besoin-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-triangle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title-accueil {
        font-size: 26px;
    }
    
    .content-with-photo {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-date {
        text-align: left;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--color-blue);
        padding-bottom: 10px;
    }
    
    .section-with-image-left,
    .section-with-image-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-section-therapie,
    .content-section-mental {
        padding: 20px 20px 60px;
    }
    
    .content-with-photo-fixed {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .photo-column-fixed {
        position: static;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .triangle-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 40px;
    }
    
    .triangle-title {
        grid-column: 1;
        grid-row: 1;
        padding: 0;
    }
    
    .card-top-left {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
    }
    
    .card-top-right {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
    }
    
    .card-bottom {
        grid-column: 1;
        grid-row: 4;
    }
    
    .service-card-triangle {
        width: 100%;
        max-width: 350px;
    }
    
    .overlay-text-top,
    .overlay-text-middle,
    .overlay-text-bottom,
    .overlay-green-top,
    .overlay-green-main {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .bg-image-wrapper img {
        height: 300px;
    }
    
    .prix-table {
        font-size: 13px;
    }
    
    .prix-table td {
        padding: 10px 5px;
    }
}

@media (max-width: 768px) {
    .method-content {
        grid-template-columns: 1fr;
    }
    
    .method-content > div:first-child,
    .method-content > div:last-child {
        order: unset !important;
    }
    
    .section-with-image {
        flex-direction: column;
    }
    
    .page-main-title {
        font-size: 28px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }
    
    .container,
    .container-wide {
        padding: 0 20px;
    }
    
    .hero-logo {
        height: 100px;
    }
    
    .hero-title-accueil {
        font-size: 22px;
    }
    
    .hero-subtitle-accueil {
        font-size: 16px;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .services-logo-container {
        width: 70px;
        height: 70px;
    }
    
    .services-title-main {
        font-size: 24px;
        margin-bottom: 60px;
    }
    
    .hero-accueil,
    .besoin-section,
    .services-accueil {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .content-section h2 {
        font-size: 22px;
    }
    
    .content-section {
        padding: 20px 20px 60px;
    }
    
    .content-section-therapie h2 {
        font-size: 24px;
    }
    
    .content-section-therapie h3 {
        font-size: 20px;
    }
    
    .page-header-simple {
        padding: 40px 20px 20px;
    }
    
    .page-header-simple .hero-logo {
        height: 100px;
    }
    
    .page-main-title-mental {
        font-size: 26px;
    }
    
    .content-section-mental h2 {
        font-size: 22px;
    }
    
    .content-section-mental h3 {
        font-size: 18px;
    }
    
    .overlay-text-top,
    .overlay-text-middle,
    .overlay-text-bottom,
    .overlay-green-top,
    .overlay-green-main {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .bg-image-wrapper img {
        height: 250px;
    }
    
    .pardon-image img {
        height: 200px;
    }
    
    .prix-table {
        display: block;
        overflow-x: auto;
    }
    
    .page-header-mental {
        padding: 40px 20px 20px;
    }
    
    .page-header-mental .hero-logo {
        height: 100px;
    }
    
    .triangle-title {
        font-size: 26px;
    }
    
    .service-card-image-triangle {
        height: 220px;
    }
}
/* ========================================
   SECTION LOCALISATION
   ======================================== */

.location-section {
    padding: 80px 40px;
    background-color: var(--color-beige-light);
}

.location-section h2 {
    font-size: 32px;
    color: var(--color-blue-dark);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-intro {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info h3 {
    font-size: 20px;
    color: var(--color-blue-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.address-text {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.location-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 20px;
    }
    
    .location-section h2 {
        font-size: 26px;
    }
    
    .location-map iframe {
        height: 300px;
    }
}


        /* =============================================
           STYLES SPÉCIFIQUES MENTAL COACHING
           ============================================= */

        /* =============================================
           BLOCS ÉMOTIONS — texte AU-DESSUS et EN-DESSOUS de l'image
           Jamais sur le visage
           ============================================= */
      .emotion-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emotion-block img {
    width: 100%;
    display: block;
}

.emotion-text-red {
    background-color: rgba(200, 50, 50, 0.55);
    color: #ffffff;
    padding: 18px 32px;
    margin: 0 40px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.7;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: calc(100% - 80px);
}

.emotion-text-green {
    background-color: rgba(40, 160, 40, 0.55);
    color: #ffffff;
    padding: 18px 32px;
    margin: 0 40px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.7;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: calc(100% - 80px);
}

.emotion-block .emotion-text-red:first-child,
.emotion-block .emotion-text-green:first-child {
    margin-bottom: -70px;
    z-index: 2;
    position: relative;
}

.emotion-block .emotion-text-red:last-child,
.emotion-block .emotion-text-green:last-child {
    margin-top: -70px;
    z-index: 2;
    position: relative;
}

        /* Titres MET stylisés comme le PDF */
        .met-title-main {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-blue-dark);
            margin: 40px 0 10px 0;
            letter-spacing: 0.5px;
        }

        .met-title-main span {
            font-size: 22px;
        }

        /* Sous-titre bleu comme dans le PDF */
        .met-subtitle {
            font-size: 20px;
            font-weight: 600;
            margin: 20px 0 20px 0;
            font-style: normal;
        }

        /* Schéma Hawkins */
        .hawkins-schema {
            background: linear-gradient(180deg, #e8f4f8 0%, #f0f9f0 50%, #fff3e0 100%);
            border: 2px solid var(--color-blue-dark);
            border-radius: 8px;
            padding: 30px 40px;
            margin: 30px 0;
            text-align: center;
            font-family: 'Georgia', serif;
        }

        .hawkins-schema .schema-title {
            font-size: 14px;
            color: var(--color-text-light);
            font-style: italic;
            margin-bottom: 20px;
        }

        .hawkins-schema .level-high {
            color: #1a7a1a;
            font-weight: 600;
            font-size: 15px;
            line-height: 2;
        }

        .hawkins-schema .level-separator {
            border: none;
            border-top: 2px dashed #999;
            margin: 15px auto;
            width: 80%;
            position: relative;
        }

        .hawkins-schema .level-separator-label {
            font-size: 12px;
            color: #888;
            font-style: italic;
            margin: 5px 0 10px;
        }

        .hawkins-schema .level-low {
            color: #8b0000;
            font-weight: 600;
            font-size: 15px;
            line-height: 2;
        }

        .hawkins-schema .level-top {
            color: #0047ab;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .hawkins-schema .level-bottom {
            color: #333;
            font-weight: 700;
            font-size: 14px;
            margin-top: 8px;
            border-top: 1px solid #ccc;
            padding-top: 8px;
        }

        /* Section pardon avec grande image pleine largeur */
        .pardon-section-full {
            position: relative;
            margin: 60px -40px;
            width: calc(100% + 80px);
        }

        .pardon-section-full img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .pardon-text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent 0%, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.85) 100%);
            padding: 60px 60px 40px;
            color: white;
        }

        .pardon-text-overlay h2 {
            color: #ffd700;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            border: none;
            padding: 0;
            text-align: left;
        }

        .pardon-text-overlay p {
            color: #ffd700;
            font-size: 15px;
            line-height: 2;
            margin-bottom: 8px;
            text-align: left;
        }

        .pardon-text-overlay p strong {
            color: white;
        }

        /* Section Exercice de présence - 2 colonnes */
        .exercice-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
            margin: 30px 0;
        }

        /* Section UCeM - image à droite */
        .ucem-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: start;
            margin: 30px 0;
        }

        .ucem-grid img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        /* Encadré jaune pour les phrases du pardon */
        .pardon-standalone {
            background: #fffbf0;
            border-left: 4px solid #f0c040;
            padding: 30px 40px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
        }

        .pardon-standalone h2 {
            color: #8b6914;
            font-size: 24px;
            margin-bottom: 25px;
            border: none;
            padding: 0;
            text-align: left;
        }

        .pardon-standalone p {
            font-size: 16px;
            line-height: 2;
            color: #555;
            text-align: left;
            margin-bottom: 10px;
        }

        .pardon-standalone p strong {
            color: #2c3e50;
        }

        /* Texte intro Se libérer - 2 colonnes comme PDF */
        .liberation-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 20px 0;
        }

        .liberation-two-col p {
            font-size: 15px;
            line-height: 1.8;
            text-align: left;
            margin-bottom: 15px;
        }

        /* Exercice de prise de conscience layout */
        .prise-conscience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
            margin: 30px 0;
        }

        .prise-conscience-grid img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        /* Tableau prix amélioré */
        .prix-table-improved {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }

        .prix-table-improved td {
            padding: 18px 20px;
            text-align: center;
            border: 1px solid var(--color-border);
            font-size: 16px;
            font-weight: 600;
            background-color: #f8f9fa;
            color: var(--color-blue-dark);
        }

        .prix-table-improved td:first-child {
            background-color: var(--color-blue-dark);
            color: white;
            font-size: 14px;
            font-weight: normal;
            text-align: left;
            width: 35%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pardon-section-full {
                margin: 40px -20px;
                width: calc(100% + 40px);
            }
            .pardon-section-full img { height: 500px; }
            .pardon-text-overlay { padding: 40px 25px 30px; }
            .pardon-text-overlay h2 { font-size: 22px; }
            .liberation-two-col,
            .prise-conscience-grid,
            .ucem-grid,
            .exercice-grid { grid-template-columns: 1fr; }
        }