/* Styles pour la section Éducation améliorée */
.education-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

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

/* En-tête de section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #283593;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5c6bc0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background-color: #283593;
    margin: 0 15px;
}

.decoration-icon {
    font-size: 1.5rem;
}

/* Introduction */
.education-intro {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid #283593;
}

/* Grille de statistiques */
.education-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #5c6bc0;
}

.stat-card.highlight {
    border-top-color: #283593;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 53, 147, 0.15);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #283593;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Barre de comparaison */
.stat-comparison {
    margin-top: 20px;
}

.comparison-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-ratio, .recommended-ratio {
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.current-ratio {
    background-color: #ff7043;
}

.recommended-ratio {
    background-color: #66bb6a;
}

/* Barre de progression */
.stat-progress {
    margin-top: 20px;
}

.progress-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #555;
    text-align: left;
}

.progress-bar {
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #283593, #5c6bc0);
    border-radius: 6px;
}

.progress-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

/* Détails sur les défis et solutions */
.education-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.challenges-container, .solutions-container {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.details-title {
    font-size: 1.8rem;
    color: #283593;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8eaf6;
}

/* Liste des défis */
.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.challenge-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.challenge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.challenge-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.challenge-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Liste des solutions */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.solution-number {
    width: 36px;
    height: 36px;
    background-color: #283593;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.solution-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.solution-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Note d'information */
.education-note {
    background-color: #e8eaf6;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.note-content p {
    margin: 0;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .education-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .education-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .education-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .challenges-container, .solutions-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .education-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Styles pour la section Initiatives améliorée */
.initiatives-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

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

/* En-tête de section */
.initiatives-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #283593;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5c6bc0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background-color: #283593;
    margin: 0 15px;
}

.decoration-icon {
    font-size: 1.5rem;
}

/* Grille d'initiatives */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Carte d'initiative */
.initiative-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 53, 147, 0.15);
}

/* Partie visuelle de la carte */
.card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image {
    height: 100%;
    position: relative;
}

.image-placeholder {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.initiative-card:hover .image-placeholder {
    transform: scale(1.05);
}

.construction {
    background-image: linear-gradient(rgba(40, 53, 147, 0.7), rgba(40, 53, 147, 0.7)), 
                      url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.training {
    background-image: linear-gradient(rgba(40, 53, 147, 0.7), rgba(40, 53, 147, 0.7)), 
                      url('https://images.unsplash.com/photo-1524178234883-043d5c3f3cf4?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.supplies {
    background-image: linear-gradient(rgba(40, 53, 147, 0.7), rgba(40, 53, 147, 0.7)), 
                      url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.canteen {
    background-image: linear-gradient(rgba(40, 53, 147, 0.7), rgba(40, 53, 147, 0.7)), 
                      url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.1rem;
}

.card-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #283593;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    background-color: #e0e0e0;
}

/* Contenu de la carte */
.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.5rem;
    color: #283593;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Listes de highlights */
.card-highlights {
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.highlight-icon {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Indicateurs de progression */
.progress-indicator {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #555;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #283593, #5c6bc0);
    border-radius: 4px;
}

/* Indicateurs d'impact */
.impact-meter {
    background-color: #e8eaf6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.impact-label {
    font-size: 0.9rem;
    color: #283593;
    font-weight: 600;
    margin-bottom: 10px;
}

.impact-items {
    display: flex;
    gap: 15px;
}

.impact-item {
    flex: 1;
    text-align: center;
}

.impact-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #283593;
}

.impact-desc {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

/* Faits nutritionnels */
.nutrition-facts {
    background-color: #f1f8e9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.facts-title {
    font-size: 0.9rem;
    color: #388e3c;
    font-weight: 600;
    margin-bottom: 10px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fact-item {
    text-align: center;
}

.fact-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.fact-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
}

/* Pied de carte */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #283593;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #5c6bc0;
}

.link-arrow {
    transition: transform 0.3s ease;
}

.card-link:hover .link-arrow {
    transform: translateX(5px);
}

.card-date, .card-partner {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-partner {
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 15px;
}

/* Call-to-action */
.initiatives-cta {
    background: linear-gradient(135deg, #283593, #5c6bc0);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: rgb(0, 128, 255);
    color: white;
}

.btn-primary:hover {
    background-color: rgb(118, 167, 220);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .initiatives-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .impact-items {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Styles personnalisés pour compléter Bootstrap 5 */
.initiatives-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Effet de survol sur les cartes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Effet sur les badges d'initiative */
.initiative-badge {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Effet sur les boutons */
.btn {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation pour les icônes dans les boutons */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Style pour la section d'impact global */
.bg-primary.bg-opacity-10 {
    backdrop-filter: blur(10px);
}

/* Style pour les cartes - hauteur uniforme */
.card {
    border-radius: 1rem;
    overflow: hidden;
}

.card-img-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .card-img-top {
        height: 180px !important;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .initiatives-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .row.g-4 {
        --bs-gutter-y: 1.5rem;
    }
}

/* Styles pour la section Partenariats - Design unifié */
.partnerships-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

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

/* En-tête de section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #283593;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5c6bc0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background-color: #283593;
    margin: 0 15px;
}

.decoration-icon {
    font-size: 1.5rem;
}

/* Introduction */
.education-intro {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid #283593;
}

/* Grille de statistiques */
.education-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #5c6bc0;
}

.stat-card.highlight {
    border-top-color: #283593;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 53, 147, 0.15);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #283593;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Barre de comparaison */
.stat-comparison {
    margin-top: 20px;
}

.comparison-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-ratio, .recommended-ratio {
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.current-ratio {
    background-color: #283593;
}

.recommended-ratio {
    background-color: #5c6bc0;
}

/* Barre de progression */
.stat-progress {
    margin-top: 20px;
}

.progress-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #555;
    text-align: left;
}

.progress-bar {
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #283593, #5c6bc0);
    border-radius: 6px;
}

.progress-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

/* Détails sur les partenariats */
.education-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.challenges-container, .solutions-container {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.details-title {
    font-size: 1.8rem;
    color: #283593;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8eaf6;
}

/* Liste des partenariats */
.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.challenge-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.challenge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.challenge-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.challenge-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Liste des écoles privées */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.solution-number {
    width: 36px;
    height: 36px;
    background-color: #283593;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.solution-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.solution-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Section financements internationaux */
.partnerships-visual-section {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.international-funding {
    padding-right: 30px;
}

.funding-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.funding-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #283593;
}

.funding-org {
    font-size: 1.3rem;
    font-weight: 700;
    color: #283593;
    margin-bottom: 10px;
}

.funding-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.funding-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
}

.funding-period {
    background-color: #e8eaf6;
    color: #283593;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.funding-purpose {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Image placeholder */
.image-placeholder-container {
    height: 100%;
}

.image-placeholder {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

.placeholder-icon {
    font-size: 4rem;
    color: #283593;
    margin-bottom: 20px;
}

.placeholder-text {
    color: #5c6bc0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Tableau des partenariats */
.partnerships-table-section {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.partnerships-table {
    width: 100%;
    border-collapse: collapse;
}

.partnerships-table thead {
    background-color: #283593;
    color: white;
}

.partnerships-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.partnerships-table tbody tr {
    border-bottom: 1px solid #e8eaf6;
    transition: background-color 0.3s ease;
}

.partnerships-table tbody tr:hover {
    background-color: #f8f9fa;
}

.partnerships-table td {
    padding: 15px;
    color: #333;
}

.partner-name {
    font-weight: 600;
    color: #283593;
}

.partnership-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.public-private {
    background-color: #e8eaf6;
    color: #283593;
}

.cooperation {
    background-color: #e3f2fd;
    color: #1565c0;
}

.corporate {
    background-color: #fff3e0;
    color: #ef6c00;
}

.ngo {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.amount {
    font-weight: 700;
    color: #283593;
}

/* Note d'information */
.education-note {
    background-color: #e8eaf6;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.note-content p {
    margin: 0;
    line-height: 1.6;
    color: #444;
}

.cta-link {
    color: #283593;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #283593;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #5c6bc0;
    border-bottom-color: #5c6bc0;
}

/* Responsive */
@media (max-width: 992px) {
    .education-details {
        grid-template-columns: 1fr;
    }
    
    .partnerships-visual-section .row {
        flex-direction: column;
    }
    
    .international-funding {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .education-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .education-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .challenges-container, .solutions-container {
        padding: 20px;
    }
    
    .partnerships-visual-section {
        padding: 20px;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .education-note {
        flex-direction: column;
        text-align: center;
    }
    
    .partnerships-table {
        font-size: 0.9rem;
    }
    
    .partnerships-table th, 
    .partnerships-table td {
        padding: 10px 5px;
    }
}

/* Styles pour la section Défis et Opportunités */
.challenges-opportunities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

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

/* En-tête de section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #283593;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5c6bc0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background-color: #283593;
    margin: 0 15px;
}

.decoration-icon {
    font-size: 1.5rem;
}

/* Introduction */
.education-intro {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 4px solid #283593;
}

/* Grille équilibre défis/opportunités */
.balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.challenges-column, .opportunities-column {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.column-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8eaf6;
}

.challenges-column .column-header {
    border-bottom-color: #ff7043;
}

.opportunities-column .column-header {
    border-bottom-color: #66bb6a;
}

.column-title {
    font-size: 1.8rem;
    color: #283593;
    margin-bottom: 10px;
    font-weight: 700;
}

.column-subtitle {
    font-size: 1rem;
    color: #666;
}

/* Listes défis et opportunités */
.challenges-list, .opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.challenge-item, .opportunity-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-item {
    background-color: #fff8e1;
    border-left: 4px solid #ff7043;
}

.opportunity-item {
    background-color: #e8f5e9;
    border-left: 4px solid #66bb6a;
}

.opportunity-item.highlight {
    background-color: #e3f2fd;
    border-left: 4px solid #283593;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(40, 53, 147, 0.15);
}

.challenge-item:hover, .opportunity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.challenge-visual, .opportunity-visual {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.challenge-icon, .opportunity-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.challenge-stat, .opportunity-stat {
    font-size: 1.5rem;
    font-weight: 800;
}

.challenge-item .challenge-stat {
    color: #ff7043;
}

.opportunity-item .opportunity-stat {
    color: #66bb6a;
}

.opportunity-item.highlight .opportunity-stat {
    color: #283593;
}

.challenge-content h4, .opportunity-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.challenge-content p, .opportunity-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Indicateurs */
.impact-indicator, .comparison-indicator {
    margin-top: 15px;
}

.impact-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.progress-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #283593, #5c6bc0);
    border-radius: 5px;
}

.progress-fill.negative {
    background: linear-gradient(90deg, #ff7043, #ff8a65);
}

.progress-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

.comparison-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-ratio, .recommended-ratio {
    height: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
}

.current-ratio {
    background-color: #ff7043;
}

.recommended-ratio {
    background-color: #66bb6a;
}

/* Stats mini */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.stat-mini {
    background-color: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.stat-mini-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #283593;
    margin-bottom: 5px;
}

.stat-mini-label {
    font-size: 0.75rem;
    color: #666;
}

/* Impact opportunités */
.opportunity-impact, .funding-breakdown, .community-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.impact-item, .funding-source, .community-stat {
    flex: 1;
    text-align: center;
}

.impact-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #283593;
}

.impact-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.funding-source {
    background-color: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.source-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.source-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #283593;
}

.community-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.community-stat .stat-icon {
    color: #66bb6a;
    font-weight: bold;
}

.stat-text {
    font-size: 0.85rem;
    color: #666;
}

/* Section synthèse */
.synthesis-section {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.details-title {
    font-size: 1.8rem;
    color: #283593;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8eaf6;
}

.strategic-priorities {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.priority-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.priority-number {
    width: 36px;
    height: 36px;
    background-color: #283593;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.priority-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.priority-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Image placeholder */
.image-placeholder-container {
    height: 100%;
}

.image-placeholder {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

.placeholder-icon {
    font-size: 4rem;
    color: #283593;
    margin-bottom: 20px;
}

.placeholder-text {
    color: #5c6bc0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.placeholder-subtext {
    color: #7986cb;
    font-size: 0.95rem;
}

/* Projection d'impact */
.impact-projection {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

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

.projection-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border-top: 4px solid #283593;
}

.projection-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.projection-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.projection-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-value, .target-value {
    text-align: center;
}

.value {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
}

.value.highlight {
    color: #283593;
}

.label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.arrow {
    font-size: 1.5rem;
    color: #5c6bc0;
    font-weight: 700;
}

/* Note d'information */
.education-note {
    background-color: #e8eaf6;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.note-content p {
    margin: 0;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .balance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .synthesis-section .row {
        flex-direction: column;
    }
    
    .image-placeholder {
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .challenges-column, .opportunities-column {
        padding: 20px;
    }
    
    .challenge-item, .opportunity-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .challenge-visual, .opportunity-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .synthesis-section {
        padding: 20px;
    }
    
    .projection-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .stats-grid, .opportunity-impact, .funding-breakdown, .community-stats {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .education-note {
        flex-direction: column;
        text-align: center;
    }
    
    .priority-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}