@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');


/* Reset et styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6b3fa0;
    --primary-light: #9370c5;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header et navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.logo {
    max-width: 50%;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    font-family: 'Italianno', cursive;
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--dark-gray);
}

/* Navigation desktop */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
    position: relative;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

/* Menu mobile actif - animation hamburger */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Media Queries */
@media screen and (max-width: 1265px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo p {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 15px 4%;
    }
    
    .logo {
        max-width: 75%;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.7rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    background-image: url('../assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), rgba(107, 63, 160, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-family: 'La Belle Aurore', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero h2:nth-child(2) {
    transition-delay: 0.5s;
    margin-bottom: 1rem;
}

.hero h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 1s;
}

.btn-appointment {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(107, 63, 160, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    transition-delay: 1.5s;
}

.btn-appointment:hover {
    background-color: var(--primary-light);
    box-shadow: 0 6px 15px rgba(107, 63, 160, 0.4);
    transform: translateY(0) scale(1.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .btn-appointment {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-color: var(--white);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.welcome-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.welcome-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-weight: 300;
}

.welcome-text p:last-child {
    margin-bottom: 0;
}

.welcome-image {
    flex: 0 0 35%;
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-light);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.5;
}

/* Media Queries */@media screen and (max-width: 992px) {    .welcome-content {        flex-direction: column-reverse;        gap: 40px;    }        .welcome-image {        flex: 0 0 100%;        max-width: 450px;        margin: 0 auto;    }        .welcome-text h2 {        font-size: 2rem;    }        /* Ajustements des éléments décoratifs en responsive */    .welcome-image::before,    .vision-image::before,    .certifications-image::before {        width: calc(100% - 20px);        height: calc(100% - 20px);    }        .journey-image::after {        width: 50%;        height: 50%;        bottom: -10px;        right: -10px;    }}@media screen and (max-width: 768px) {    .welcome-section {        padding: 70px 0;    }        .welcome-text h2 {        font-size: 1.8rem;    }        .welcome-text p {        font-size: 1rem;    }        /* Ajustements supplémentaires des éléments décoratifs */    .welcome-image::before {        top: 15px;        left: 15px;    }        .vision-image::before {        top: -15px;        right: 15px;    }        .certifications-image::before {        top: 10px;        left: -10px;    }}@media screen and (max-width: 480px) {    .welcome-section {        padding: 50px 0;    }        .welcome-text h2 {        font-size: 1.6rem;    }        .welcome-text p {        font-size: 0.95rem;        line-height: 1.7;    }        /* Réduction des éléments décoratifs sur très petits écrans */    .welcome-image::before,    .vision-image::before,    .certifications-image::before {        border-width: 2px;    }        .welcome-image::before {        top: 10px;        left: 10px;    }        .vision-image::before {        top: -10px;        right: 10px;    }        .certifications-image::before {        top: 8px;        left: -8px;    }        .journey-image::after {        width: 40%;        height: 40%;        bottom: -8px;        right: -8px;    }}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.vision-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.vision-text ul {
    margin-bottom: 25px;
    padding-left: 5px;
}

.vision-text li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 300;
    position: relative;
    padding-left: 25px;
}

.vision-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.vision-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-weight: 300;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

.vision-image {
    flex: 0 0 40%;
    position: relative;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-light);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.5;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .vision-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .vision-image {
        flex: 0 0 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .vision-text h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .vision-section {
        padding: 70px 0;
    }
    
    .vision-text h2 {
        font-size: 1.8rem;
    }
    
    .vision-text li,
    .vision-text p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .vision-section {
        padding: 50px 0;
    }
    
    .vision-text h2 {
        font-size: 1.6rem;
    }
    
    .vision-text li,
    .vision-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .vision-text li {
        padding-left: 20px;
    }
    
    .vision-text li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background-color: var(--white);
}

.journey-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.journey-text {
    flex: 1;
}

.journey-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.journey-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.journey-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-weight: 300;
}

.journey-text ul {
    margin: 0 0 25px 15px;
}

.journey-text li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 300;
    position: relative;
    padding-left: 15px;
}

.journey-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.journey-image {
    flex: 0 0 45%;
    position: relative;
}

.journey-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background-color: rgba(107, 63, 160, 0.05);
    border-radius: 8px;
    z-index: -1;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .journey-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .journey-image {
        flex: 0 0 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .journey-text h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .journey-section {
        padding: 70px 0;
    }
    
    .journey-text h2 {
        font-size: 1.8rem;
    }
    
    .journey-text p,
    .journey-text li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .journey-section {
        padding: 50px 0;
    }
    
    .journey-text h2 {
        font-size: 1.6rem;
    }
    
    .journey-text p,
    .journey-text li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.certifications-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.certifications-text {
    flex: 1;
}

.certifications-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.certifications-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.certifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-weight: 300;
    display: flex;
    align-items: baseline;
}

.certifications-list li:last-child {
    margin-bottom: 0;
}

.certifications-list .year {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 50px;
    margin-right: 15px;
}

.certifications-image {
    flex: 0 0 40%;
    position: relative;
}

.certifications-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.certifications-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.15;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .welcome-content,
    .vision-content,
    .journey-content,
    .certifications-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .welcome-image,
    .vision-image,
    .journey-image,
    .certifications-image {
        flex: 0 0 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .welcome-text h2,
    .vision-text h2,
    .journey-text h2,
    .certifications-text h2 {
        font-size: 2rem;
    }
    
    /* Ajustements des éléments décoratifs en responsive */
    .welcome-image::before,
    .vision-image::before,
    .certifications-image::before {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    
    .journey-image::after {
        width: 50%;
        height: 50%;
        bottom: -10px;
        right: -10px;
    }
}

@media screen and (max-width: 768px) {
    .welcome-section,
    .vision-section,
    .journey-section,
    .certifications-section {
        padding: 70px 0;
    }
    
    .welcome-text h2,
    .vision-text h2,
    .journey-text h2,
    .certifications-text h2 {
        font-size: 1.8rem;
    }
    
    .welcome-text p,
    .vision-text p,
    .vision-text li,
    .journey-text p,
    .journey-text li,
    .certifications-list li {
        font-size: 1rem;
    }
    
    /* Ajustements supplémentaires des éléments décoratifs */
    .welcome-image::before {
        top: 15px;
        left: 15px;
    }
    
    .vision-image::before {
        top: -15px;
        right: 15px;
    }
    
    .certifications-image::before {
        top: 10px;
        left: -10px;
    }
}

@media screen and (max-width: 480px) {
    .welcome-section,
    .vision-section,
    .journey-section,
    .certifications-section {
        padding: 50px 0;
    }
    
    .welcome-text h2,
    .vision-text h2,
    .journey-text h2,
    .certifications-text h2 {
        font-size: 1.6rem;
    }
    
    .welcome-text p,
    .vision-text p,
    .vision-text li,
    .journey-text p,
    .journey-text li,
    .certifications-list li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Réduction des éléments décoratifs sur très petits écrans */
    .welcome-image::before,
    .vision-image::before,
    .certifications-image::before {
        border-width: 2px;
    }
    
    .welcome-image::before {
        top: 10px;
        left: 10px;
    }
    
    .vision-image::before {
        top: -10px;
        right: 10px;
    }
    
    .certifications-image::before {
        top: 8px;
        left: -8px;
    }
    
    .journey-image::after {
        width: 40%;
        height: 40%;
        bottom: -8px;
        right: -8px;
    }
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(107, 63, 160, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 300;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.footer-nav a {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(107, 63, 160, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 300;
}

.legal-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.legal-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav ul {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Sous-titre dans la section traumatisme */
.subtitle-h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-top: 25px;
    margin-bottom: 20px;
    position: relative;
}

.subtitle-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 2px;
    background-color: var(--primary-light);
}

@media screen and (max-width: 768px) {
    .subtitle-h2 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    .subtitle-h2 {
        font-size: 1.3rem;
    }
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.impact-content {
    max-width: 800px;
    margin: 0 auto;
}

.impact-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.impact-content h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.impact-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--dark-gray);
    font-weight: 300;
}

.impact-content ul {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 5px;
}

.impact-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 300;
    position: relative;
    padding-left: 25px;
}

.impact-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .impact-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .impact-section {
        padding: 70px 0;
    }
    
    .impact-content h2 {
        font-size: 1.8rem;
    }
    
    .impact-content p,
    .impact-content li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .impact-section {
        padding: 50px 0;
    }
    
    .impact-content h2 {
        font-size: 1.6rem;
    }
    
    .impact-content p,
    .impact-content li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .impact-content li {
        padding-left: 20px;
    }
    
    .impact-content li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
}

/* Style pour agrandir l'image de la séance TIPI */
.tipi-session-image {
    flex: 0 0 50% !important;
}

.tipi-session-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
}

@media screen and (max-width: 992px) {
    .tipi-session-image {
        flex: 0 0 100% !important;
        max-width: 550px !important;
    }
}

/* Style pour les exemples de séances */
.session-examples {
    margin-top: 30px;
    padding: 25px 30px;
    background-color: rgba(147, 112, 197, 0.05);
    border-left: 3px solid var(--primary-light);
    border-radius: 0 8px 8px 0;
}

.session-examples h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.session-examples p {
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-gray);
    font-weight: 300;
}

.session-examples p span {
    display: inline-block;
    position: relative;
    margin: 0 5px;
}

.session-examples p span::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--primary-light);
    border-radius: 50%;
    position: relative;
    top: -3px;
    margin: 0 8px;
}

.session-examples p span:last-child::after {
    display: none;
}

@media screen and (max-width: 768px) {
    .session-examples {
        padding: 20px 25px;
    }
    
    .session-examples h4 {
        font-size: 1.1rem;
    }
    
    .session-examples p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .session-examples {
        padding: 15px 20px;
    }
    
    .session-examples h4 {
        font-size: 1rem;
    }
    
    .session-examples p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Styles pour les tarifs */
.tarif-main {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    font-weight: 400;
}

.tarif-main span {
    font-weight: 600;
    color: var(--primary-color);
}

.tarif-info {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.tarif-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.tarif-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
    position: relative;
}

.tarif-list li span {
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .tarif-main {
        font-size: 1.2rem;
    }
    
    .tarif-list li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .tarif-main {
        font-size: 1.1rem;
    }
    
    .tarif-list li {
        font-size: 0.95rem;
    }
}

/* Widget de réservation */
.booking-widget {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 63, 160, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.booking-placeholder {
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed rgba(107, 63, 160, 0.2);
    border-radius: 8px;
    margin: 20px;
}

.booking-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.booking-placeholder p {
    font-size: 1rem;
    color: var(--dark-gray);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .tarif-main {
        font-size: 1.2rem !important;
    }
    
    .tarif-list li {
        font-size: 1rem;
    }
    
    .booking-placeholder {
        padding: 40px 30px;
    }
    
    .booking-placeholder h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .tarif-main {
        font-size: 1.1rem !important;
    }
    
    .tarif-list li {
        font-size: 0.95rem;
    }
    
    .booking-placeholder {
        padding: 30px 20px;
    }
    
    .booking-placeholder h3 {
        font-size: 1.1rem;
    }
    
    .booking-placeholder p {
        font-size: 0.9rem;
    }
}

/* Styles pour la section médias */
.media-section {
    padding: 80px 0;
    background-color: var(--white);
}

.media-nav {
    margin-bottom: 50px;
    text-align: center;
}

.media-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.media-nav li {
    list-style: none;
}

.media-nav a {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.media-nav a:hover, 
.media-nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.media-category {
    margin-bottom: 60px;
}

.media-category:last-child {
    margin-bottom: 0;
}

.media-category h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.media-category h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-light);
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.media-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.media-item::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-top: 8px;
}

.media-item a {
    color: var(--dark-gray);
    font-weight: 400;
    transition: color 0.3s ease;
    text-decoration: none;
    line-height: 1.6;
}

.media-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.media-item span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .media-section {
        padding: 60px 0;
    }
    
    .media-nav {
        margin-bottom: 40px;
    }
    
    .media-nav ul {
        gap: 10px;
    }
    
    .media-nav a {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .media-category {
        margin-bottom: 50px;
    }
    
    .media-category h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .media-section {
        padding: 50px 0;
    }
    
    .media-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .media-category h2 {
        font-size: 1.6rem;
    }
    
    .media-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .media-item::before {
        display: none;
    }
}

/* Liens de paiement */
.payment-link {
    display: inline-block;
    margin-top: 8px;
    margin-left: 25px;
    padding: 6px 15px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(107, 63, 160, 0.2);
}

@media screen and (max-width: 768px) {
    .payment-link {
        margin-left: 15px;
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .payment-link {
        margin-left: 0;
        margin-top: 5px;
        display: block;
        text-align: center;
        max-width: 150px;
    }
}

/* Styles pour les mentions légales */
.legal-section {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 50px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(107, 63, 160, 0.1);
}

.legal-block p, 
.legal-block address {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 300;
}

.legal-block address {
    font-style: normal;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .legal-section {
        padding: 60px 0;
    }
    
    .legal-block {
        margin-bottom: 40px;
    }
    
    .legal-block h2 {
        font-size: 1.4rem;
    }
    
    .legal-block p, 
    .legal-block address {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .legal-section {
        padding: 50px 0;
    }
    
    .legal-block {
        margin-bottom: 30px;
    }
    
    .legal-block h2 {
        font-size: 1.3rem;
    }
    
    .legal-block p, 
    .legal-block address {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
