/* ==========================================================================
   1. VARIABLES GLOBALES ET CONFIGURATION DE BASE
   ========================================================================== */

:root {
    /* --- Couleurs --- */
    --bg-dark: #000000;
    --bg-light: #1d1d1c;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-color: #faca15;
    --accent-color-hover: #aa7718;
    --accent-beige: #D2B48C;

    /* --- Tableau de bord pour la section Hero (Parallax) --- */
    --hero-bg-scale: 1.15;
    --hero-bg-x: 10vw; 
    --hero-bg-y: 0px;

    --hero-floor-scale: 3;
    --hero-floor-x: 5vw;
    --hero-floor-y: -30px;

    --hero-fg-scale: 0.8;
    --hero-fg-x: 12vw;
    --hero-fg-y: 160px;
    
    --hero-title-top-position: 40%;
    --hero-title-x: -13vw;
    --hero-title-y: 0px;
    
    --hero-subtitle-bottom-position: 8vh;
}

/* --- Styles Généraux (Reset & Typographie) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

/* --- Helpers de Layout --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 5rem 0;
}

.light-bg {
    background-color: var(--bg-light);
}


/* ==========================================================================
   2. COMPOSANTS RÉUTILISABLES
   ========================================================================== */

/* --- Boutons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}


/* ==========================================================================
   3. STRUCTURE PRINCIPALE (NAVBAR & FOOTER)
   ========================================================================== */

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: var(--bg-dark);
    padding: 0.5rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.nav-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--accent-color-hover);
}

.nav-socials {
    display: flex;
    align-items: center;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #fff;
    transform: scale(1.1);
}

/* --- Menu Hamburger (Mobile) --- */
.nav-hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

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

/* --- Footer --- */
footer {
    padding: 2rem 0;
    text-align: center;
    background-color: #000;
    color: var(--text-secondary);
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}


/* ==========================================================================
   4. SECTIONS DE LA PAGE D'ACCUEIL (INDEX.HTML)
   ========================================================================== */

/* --- 4.1 Section Hero --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-section img {
    position: absolute;
    left: 50%;
    width: auto;
    transition: transform 0.5s ease-out;
}

.hero-title-background {
    position: absolute;
    z-index: 0;
    width: auto;
    top: var(--hero-title-top-position);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 10vw;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.65);
    text-stroke: 1px rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
    transition: transform 0.5s ease-out;
}

.hero-background-image {
    z-index: 1;
    top: 50%;
    height: 90vh;
    transform: translate(calc(-50% + var(--hero-bg-x)), calc(-50% + var(--hero-bg-y))) scale(var(--hero-bg-scale));
    opacity: 0;
    animation: fadeIn 2s ease-out 2s forwards;
}

.hero-floor-image {
    z-index: 2;
    bottom: 0;
    height: 50vh;
    width: 200%;
    object-fit: cover;
    transform: translate(calc(-50% + var(--hero-floor-x)), var(--hero-floor-y)) scale(var(--hero-floor-scale));
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-foreground-image {
    z-index: 3;
    bottom: 0;
    height: 80vh;
    transform: translate(calc(-50% + var(--hero-fg-x)), var(--hero-fg-y)) scale(var(--hero-fg-scale));
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hero-subtitle {
    position: absolute;
    z-index: 6;
    bottom: var(--hero-subtitle-bottom-position);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Effets de calques (vignette et dégradé) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%), 
        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 90%);
}


/* --- 4.2 Section Programmes --- */
/* Styles pour la carte de l'offre groupée */
.bundle-link {
    display: block;
    text-decoration: none;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.bundle-link:hover {
    transform: translateY(-10px);
}

.bundle-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    overflow: hidden;
    text-align: center;
}

.bundle-header {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-header .highlight-discount {
    color: #fff; /* Texte blanc pour un contraste maximal */
    font-size: 2rem; /* Un peu plus grand pour attirer l'œil */
    vertical-align:auto; /* Assure un bon alignement vertical avec le reste du texte */
}

.bundle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.5rem;
    gap: 1rem;
}

.bundle-image {
    height: 200px;
    border-radius: 5px;
}

.bundle-operator {
    font-size: 2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.bundle-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.bundle-operator-equal {
    display: none;
}

/* .bundle-text-mobile {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
} */

/* NOUVEAU : Conteneur pour les prix */
.bundle-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.bundle-new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.bundle-old-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.bundle-old-price del {
    text-decoration: line-through;
}

/* FIN BUNDLE STYLING  */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.program-card-link:hover {
    transform: translateY(-10px);
}

.program-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    padding-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.program-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.program-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.program-card p {
    padding: 0 0.5rem 1.5rem 0.5rem;
    color: var(--text-secondary);
    flex-grow: 1;
}


/* --- 4.3 Section À Propos --- */
.about-section {
    background-color: var(--bg-dark);
}

.about-card-layout {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light); 
    border-radius: 10px;               
    padding: 2rem;                     
    text-align: center;                
}

.about-image {
    max-width: 220px;
    margin: 0 auto 2rem auto;
    padding: 0.5rem;
    border-radius: 14px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.about-text h2 {
    text-align: center; 
    margin-bottom: 1rem;
}

.about-text h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-secondary);
}


/* --- 4.4 Section Témoignages --- */
/* NOUVEAU : Style pour la section "Clients Satisfaits" */
.satisfied-clients {
    text-align: center;
    margin-bottom: 3rem; /* Espace avant le titre "What they think" */
    padding-bottom: 2rem; /* Espace sous le texte */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Ligne de séparation subtile */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-count {
    font-family: 'Oswald', sans-serif; /* Police percutante comme le titre */
    font-size: 5rem; /* Grande taille */
    font-weight: 700;
    color: var(--accent-color); /* Utilise la couleur d'accent */
    line-height: 1.1;
}

.client-text {
    font-size: 2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* fin style "clients satisfaits"  */

/* Le conteneur principal du carrousel */
.testimonial-carousel {
    position: relative;
    max-width: 600px; /* Largeur max du carrousel sur PC */
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 10px;
    cursor: grab;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track.is-dragging {
    cursor: grabbing; /* Curseur "main fermée" */
}

/* Le style de chaque slide, LA CLÉ pour éviter les sauts */
.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 400px; /* HAUTEUR FIXE : ajustez cette valeur si besoin */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    padding: 1rem;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Assure que l'image est visible sans être déformée */
    border-radius: 5px;
}

/* Style des flèches de navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background-color: var(--accent-color);
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

/* Style des points de navigation */
.carousel-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--accent-color);
}


/* --- 4.5 Section Contact --- */
.contact-section {
    background-color: var(--bg-dark);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    align-self: center;
}


/* ==========================================================================
   5. STYLES SPÉCIFIQUES AUX PAGES DE PROGRAMME
   ========================================================================== */

/* Styles pour le sélecteur de langue */
.language-switcher {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 100px; /* Espace pour laisser passer la navbar fixe */
}

/* On retire l'ancien positionnement absolu pour la page d'accueil */
/* .home-switcher { ... } */

.language-switcher button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher button img {
    width: 20px;
    border-radius: 2px;
}

.language-switcher button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.language-switcher button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

/* ==========================================================================
   NOUVELLE LOGIQUE D'AFFICHAGE DES LANGUES
   ========================================================================== */

/* Par défaut, on n'affiche que l'anglais */
body:not(.lang-fr):not(.lang-es) [lang="fr"],
body:not(.lang-fr):not(.lang-es) [lang="es"] {
    display: none;
}
/* Si le body a la classe 'lang-fr', on affiche le français et on cache les autres */
body.lang-fr [lang="en"],
body.lang-fr [lang="es"] {
    display: none;
}
body.lang-fr [lang="fr"] {
    display: inline;
}
/* Si le body a la classe 'lang-es', on affiche l'espagnol et on cache les autres */
body.lang-es [lang="en"],
body.lang-es [lang="fr"] {
    display: none;
}
body.lang-es [lang="es"] {
    display: inline;
}

.program-page-section {
    padding-top: 2rem; /* On réduit le padding ici car le switcher en a déjà */
    padding-bottom: 5rem;
}

.program-hero-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.program-image {
    flex: 1;
    position: relative;
}

.program-image img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    pointer-events: none; /* TRÈS IMPORTANT : Laisse passer les clics vers l'image en dessous */
    opacity: 0.8;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.play-indicator.is-hidden {
    opacity: 0;
    animation: none; /* On arrête l'animation quand il est caché */
}

/* NOUVEAU : On ajoute l'animation de pulsation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(250, 202, 21, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 10px rgba(250, 202, 21, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(250, 202, 21, 0);
    }
}

.program-details {
    flex: 1;
}

.program-author {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.chromatic-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.1;
    color: #f0f0f0;
}

.program-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.program-audience {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 1.5rem;
}

.program-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.old-price-wrapper {
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.old-price-wrapper del {
    text-decoration: line-through;
}

.program-description {
    max-width: 800px;
    margin: 0 auto;
}

.program-description h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.program-description p,
.program-description li {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.program-description ul {
    list-style: none;
    padding-left: 0;
}

.program-description li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-description li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ==========================================================================
   X. ÉCRAN DE CHARGEMENT
   ========================================================================== */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--text-secondary);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   6. ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* ==========================================================================
   7. RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    /* --- Styles Généraux & Typographie (Mobile) --- */
    h2 {
        font-size: 2rem;
    }

    /* --- Navbar (Mobile) --- */
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

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

    .nav-item {
        margin: 1.2rem 0;
    }

    .nav-socials {
        flex-direction: row;
        margin: 1.5rem 0;
    }

    .nav-hamburger {
        display: block;
    }
    
    .hamburger-toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger-toggle .line2 {
        opacity: 0;
    }
    .hamburger-toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* --- Section Hero (Mobile) --- */
    :root {
        --hero-fg-y: 50px;
        --hero-fg-scale: 0.65;
        --hero-bg-y: -40px;
        --hero-bg-scale: 0.85;
        --hero-floor-scale: 2.0;
        --hero-floor-y: -100px; 
        --hero-title-top-position: 17%;
        --hero-title-x: 0px; 
        --hero-subtitle-bottom-position: 12vh;
        --hero-bg-x: 0px;
        --hero-floor-x: 0px;
        --hero-fg-x: 0px;
    }
    
    .hero-title-background {
        text-align: center;
        font-size: 16vw;
        -webkit-text-stroke-width: 0.5px;
        text-stroke-width: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* --- Grilles (Programmes, Témoignages) (Mobile) --- */
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* --- Pages de Programme (Mobile) --- */
    .program-hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .program-image {
        flex: initial; /* Annule l'étirement vertical */
        width: 100%;
        max-width: 400px; /* Limite la largeur sur les tablettes */
        margin-bottom: 2rem; /* Ajoute un espace sous l'image */
    }

    .program-details .chromatic-text {
        font-size: 2.5rem;
    }

    /* MODIFIÉ : On centre le prix sur mobile */
    .program-price-container {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .about-card-layout {
        display: flex;         
        align-items: center;   
        text-align: left;      
        gap: 3rem;   
        padding: 3rem; 
    }

    .about-image {
        flex-basis: 30%; 
        max-width: none;
        margin: 0;        
    }

    .about-text {
        flex-basis: 70%;
    }

    .about-text h2 {
        text-align: left;
    }
    
    .bundle-content {
        flex-wrap: nowrap;
    }

    .bundle-operator-equal {
        display: inline;
        font-size: 2.5rem;
        color: var(--text-secondary);
        font-weight: 300;
    }

    .bundle-text-mobile {
        display: none;
    }

    .bundle-result {
        width: auto;
    }
    
    .bundle-price-container {
        width: auto; 
    }
    .satisfied-clients {
        max-width: 400px; /* Contrôle la longueur de la ligne. Ajustez cette valeur. */
        margin-left: auto;  /* Centre le bloc horizontalement */
        margin-right: auto;
    }
}