html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.no-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
}

/* Cercles décoratifs */
.glass-circle-1 {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(106, 176, 76, 0.15); /* Vert */
    border-radius: 50%;
}

.glass-circle-2 {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(230, 126, 34, 0.12); /* Orange */
    border-radius: 50%;
}

.slide-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
    height: 95vh; /* Utilise presque toute la hauteur sans scroll */
    display: flex;
    flex-direction: column;
}

/* 1. Logos tout en haut */
.logo-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 10px; /* Marge réduite au minimum */
}

.logo-frame {
    background: white;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-fit { max-height: 100%; max-width: 100%; object-fit: contain; }

/* 2. Zone centrale remontée */
.main-content-area {
    margin-top: 20px; /* Espace réduit après les logos */
    flex-grow: 1; /* Prend l'espace pour centrer le contenu */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre verticalement les titres et la carte */
}

.text-xl-bold {
    font-size: 2.3rem;
    font-weight: 800;
    color: #222;
    margin: 0;
    text-align: center;
}

.text-lg-med {
    font-size: 1.7rem;
    color: #e67e22;
    font-weight: 600;
    margin: 5px 0 25px 0;
    text-align: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f0f0f0;
    padding: 30px 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 8px solid #6ab04c;
    max-width: 850px;
    margin: 0 auto; /* Centre la carte horizontalement */
}

.row-info {
    font-size: 1.2rem;
    color: #444;
    margin: 15px 0;
}

.txt-focus {
    font-weight: 700;
    color: #000;
}

/* 3. Bouton décollé du bas */
.footer-nav {
    padding-bottom: 60px; /* Remonte le bouton du bord inférieur */
    text-align: center;
}

.cta-button {
    background: #222;
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #6ab04c;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* --- PROTECTION MOBILE : NE MODIFIE PAS LE CONTENU PC --- */
@media screen and (max-width: 1024px) {
    /* On dit au téléphone : "Ignore la hauteur fixe et laisse l'utilisateur scroller" */
    html, body, .no-scroll { 
        height: auto !important; 
        overflow-y: auto !important; 
        display: block !important; 
    }
    
    .slide-container { 
        height: auto !important; 
        width: 95% !important; 
        margin: 0 auto !important; 
        padding: 20px 0 !important;
        display: block !important;
    }

    /* On force les éléments à s'empiler verticalement pour que ce soit lisible sur tel */
    .conclusion-grid, .phase-grid, .list-container, .grid-moyens { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 15px !important;
    }

    /* On réduit légèrement la taille des titres SEULEMENT sur mobile */
    .title-main, .title-bold { 
        font-size: 1.6rem !important; 
        text-align: center !important;
    }
}