/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #4a9d5f;
    --primary-dark: #3a7d4f;
    --primary-light: #6db97f;
    --secondary-color: #f8f9fa;
    --accent-color: #ff9800;
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #7f8c8d;
    --bg-light: #f5f7f9;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-brand a {
    display: block;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-brand .logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-brand .logo {
        height: 40px;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, #4a9d5f 0%, #3a7d4f 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: linear-gradient(135deg, #4a9d5f 0%, #3a7d4f 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
}

/* ===================================
   CERTIFICATIONS SECTION
   =================================== */
.certifications {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cert-item {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* ===================================
   CONTENT GRID
   =================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.content-box h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-box p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   KEY POINTS SECTION
   =================================== */
.key-points {
    background-color: var(--bg-light);
}

.key-points h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.point-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.point-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.point-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-item p {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    background-color: var(--bg-light);
}

.pricing-card {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--primary-color);
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.price {
    margin: 2rem 0;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .per {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-left: 0.5rem;
}

.pricing-info {
    color: var(--text-medium);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.pricing-delay {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: var(--text-dark);
}

.pricing-delay i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #4a9d5f 0%, #3a7d4f 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--bg-light);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===================================
   FORMATION PAGE
   =================================== */
.formation-overview {
    background-color: var(--bg-light);
}

.overview-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.overview-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.overview-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-medium);
}

/* ===================================
   OBJECTIFS & COMPETENCES
   =================================== */
.objectifs,
.competences {
    background-color: var(--bg-white);
}

.objectif-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.objectif-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.competence-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.competence-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.competence-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.competence-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.competence-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.competence-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   PUBLIC VISÉ
   =================================== */
.public-vise {
    background-color: var(--bg-light);
}

.prerequis-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.prerequis-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.prerequis-card ul {
    list-style: none;
    padding-left: 0;
}

.prerequis-card li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.prerequis-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.admission-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.admission-info p {
    color: var(--text-dark);
    margin: 0;
}

/* ===================================
   PROGRAMME DÉTAILLÉ - MODULES
   =================================== */
.programme-detaille {
    background-color: var(--bg-white);
}

.module-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: var(--transition);
}

.module-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.module-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.module-number {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.module-header h3 {
    flex: 1;
    min-width: 200px;
    font-size: 1.4rem;
}

.module-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.95;
}

.module-content {
    padding: 2rem;
}

.module-objectif {
    background-color: var(--bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.module-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.module-content ul {
    list-style: none;
    padding-left: 0;
}

.module-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.module-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.module-eval {
    background-color: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
}

.eval-finale {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.eval-finale h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ===================================
   ÉQUIPE PÉDAGOGIQUE
   =================================== */
.equipe-pedagogique {
    background-color: var(--bg-light);
}

.formateur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.formateur-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.formateur-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.formateur-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.formateur-expertise {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.formateur-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   MÉTHODES PÉDAGOGIQUES
   =================================== */
.methodes-pedagogiques {
    background-color: var(--bg-white);
}

.methode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.methode-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.methode-card:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
}

.methode-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.methode-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.methode-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   MODALITÉS D'ÉVALUATION
   =================================== */
.modalites-evaluation {
    background-color: var(--bg-light);
}

.eval-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.eval-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.eval-card ul {
    list-style: none;
    padding-left: 0;
}

.eval-card li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.eval-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.exam-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.exam-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exam-card p {
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.suivi-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.suivi-info p {
    color: var(--text-dark);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suivi-info i {
    color: var(--primary-color);
}

/* ===================================
   ACCESSIBILITÉ
   =================================== */
.accessibilite {
    background-color: var(--bg-white);
}

.accessibilite-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.accessibilite-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.accessibilite-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===================================
   TÉMOIGNAGES PAGE
   =================================== */
.temoignages-intro {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.temoignage-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: var(--transition);
}

.temoignage-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.temoignage-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.temoignage-avatar {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.temoignage-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.profession {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0.3rem;
}

.location {
    font-size: 0.95rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.temoignage-content {
    padding: 2.5rem;
}

.quote-icon {
    color: var(--primary-light);
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.temoignage-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.temoignage-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.highlight {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.competences-list {
    list-style: none;
    padding-left: 0;
}

.competences-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    line-height: 1.7;
    color: var(--text-medium);
}

.competences-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.impact-box {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.impact-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.result {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.result i {
    color: var(--accent-color);
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.temoignage-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

.professional-impact {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.professional-impact h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.professional-impact ul {
    list-style: none;
    padding-left: 1.5rem;
}

.professional-impact li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
}

.professional-impact li::before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.institutional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.inst-stat {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.inst-stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.inst-stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.inst-stat p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.result-highlight {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.result-highlight i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-highlight strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.economic-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.impact-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.impact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-item h5 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.impact-item p {
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.collaboration-note {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.collaboration-note p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   FAQ PAGE
   =================================== */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-light);
}

.faq-item {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer {
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.faq-answer h5 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-address,
.footer-contact {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-legal-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal-content h2 i {
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ol li {
    margin-bottom: 0.8rem;
}

.legal-content ol li a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content ol li a:hover {
    text-decoration: underline;
}

/* Sommaire Box */
.sommaire-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.sommaire-box h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Legal Sections */
.legal-section {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border-top: 3px solid var(--primary-color);
}

.legal-section h2:first-child {
    margin-top: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Qualiopi Badge */
.qualiopi-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.qualiopi-badge h3 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: white;
}

.qualiopi-badge .subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Droits Grid */
.droits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.droit-item {
    background-color: var(--bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.droit-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.droit-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Exercice Droits */
.exercice-droits {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

/* Mentions Footer */
.mentions-footer {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.mentions-footer hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 2px solid var(--border-color);
}

.footer-legal-details {
    margin-top: 1.5rem;
}

.footer-legal-details p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* CGV Specific Styles */
.important-notice {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.important-notice h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.important-notice p {
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

.alert-danger {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.alert-danger h4 {
    color: #721c24;
    margin-top: 0;
    margin-bottom: 1rem;
}

.alert-danger p, .alert-danger ul {
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-left: 5px solid #17a2b8;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: #0c5460;
}

.info-box {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.legal-quote {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin: 2rem 0;
}

.legal-quote h5 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.legal-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

.cross-list {
    list-style: none;
    padding-left: 0;
}

.cross-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.cross-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
    font-size: 1.2rem;
}

/* CGV Tables */
.cgv-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    border-radius: 10px;
    overflow: hidden;
}

.cgv-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.cgv-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.cgv-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.cgv-table tbody tr:last-child td {
    border-bottom: none;
}

.cgv-table tbody tr:hover {
    background-color: var(--bg-light);
}

.cnil-box {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.cnil-box h4 {
    color: #1565c0;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cnil-box p {
    color: #0d47a1;
    margin-bottom: 0.8rem;
}

.cnil-box a {
    color: #1976d2;
    font-weight: 500;
}

.cnil-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cgv-table {
        font-size: 0.9rem;
    }
    
    .cgv-table th,
    .cgv-table td {
        padding: 0.8rem;
    }
}

/* CNIL Box */
.cnil-box {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.cnil-box p {
    color: #0d47a1;
    margin: 0;
    line-height: 1.8;
}

.cnil-box a {
    color: #1565c0;
    text-decoration: underline;
}

.cnil-box a:hover {
    color: #0d47a1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .content-grid,
    .stats-grid,
    .formateur-grid,
    .methode-grid {
        grid-template-columns: 1fr;
    }

    .module-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .temoignage-header {
        flex-direction: column;
        text-align: center;
    }

    .stats-highlight {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .stats-highlight {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Skip to content link (accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}