.elementor-6515 .elementor-element.elementor-element-8ee2085{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-117px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-071a78e *//* --- Variables CSS & Reset --- */
:root {
    /* Palette de couleurs Akadef (Suggestion: Bleu professionnel et orange dynamique) */
    --primary-color: #0056b3; /* Bleu principal */
    --primary-dark: #003d82;
    --accent-color: #ff6b35; /* Orange pour les actions */
    --accent-hover: #e55a2b;
    
    /* Couleurs neutres */
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;

    /* Espacements et tailles */
    --container-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* --- Utilitaires --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Boutons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 10px;
}
.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.course-hero h1{color: white}
.course-hero P{color: white}

.dot { color: var(--accent-color); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* --- Hero Section --- */
.course-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.badge {
    background-color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
}

/* --- Key Info Bar --- */
.key-info-bar {
    background: white;
    padding: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-top: -30px; /* Chevauchement léger sur le hero */
    border-radius: var(--border-radius);
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon {
    font-size: 2rem;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Main Layout (Grid 2 colonnes) --- */
.main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* La colonne de gauche est 2x plus large */
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
    align-items: start; /* Important pour le sticky sidebar */
}

/* --- Styles de contenu génériques --- */
.section-box {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.section-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* --- Listes à puces personnalisées (Objectifs) --- */
.check-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* --- Programme détaillé Styles --- */
.programme-section .module {
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.programme-section h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.programme-section ul li {
    margin-bottom: 8px;
    color: var(--text-light);
    list-style-type: disc;
    margin-left: 20px;
}

/* --- Sidebar Sticky Styles --- */
.sidebar-column {
    position: sticky;
    top: 100px; /* Hauteur de la navbar + un peu d'espace */
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.inscription-card {
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.inscription-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.price {
    text-align: center;
    margin-bottom: 15px;
}

.price .amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    color: var(--text-light);
}

.price-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.spots-left {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #d9534f; /* Rouge urgence */
    font-weight: 600;
}

.benefits-list {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.benefits-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Trainer Card */
.trainer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.trainer-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.trainer-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* --- Footer --- */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* --- Responsive Design (Media Queries) --- */
@media (max-width: 992px) {
    /* Sur tablettes : on passe la grid principale en 1 seule colonne */
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-column {
        position: static; /* Plus de sticky sur mobile/tablette */
    }

    /* On inverse l'ordre : le contenu d'abord, la sidebar ensuite */
    .main-layout {
        display: flex;
        flex-direction: column;
    }
    .content-column { order: 1; }
    .sidebar-column { order: 2; }
    
    /* Le bloc inscription remonte en premier dans la sidebar pour être visible */
    .inscription-card {
        order: -1; 
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .course-hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .btn-outline { margin-left: 0; }

    .key-info-bar {
        margin-top: 0;
        border-radius: 0;
    }
    .info-grid {
        grid-template-columns: 1fr 1fr; /* 2 par ligne sur mobile */
    }

    .nav-links {
        display: none; /* Masquer la nav sur mobile pour simplifier l'exemple */
    }
}/* End custom CSS */