/* ===== PAGE MISSIONS AMÉLIORÉE ===== */

/* Navigation active */
nav ul li a.active {
    color: #2c5530;
    font-weight: bold;
    position: relative;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5530;
}

/* Navigation rapide */
.quick-nav {
    background-color: white;
    padding: 30px 0;
}

.quick-nav-container h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.pillars-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pillar-btn {
    background: white;
    color: #2c5530;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5530;
    transition: all 0.3s ease;
}

.pillar-btn:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* Sections de mission */
.mission-section {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5530;
    transition: all 0.3s ease;
}

.mission-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-header h2 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 2em;
    border-bottom: 2px solid #e8f4ea;
    padding-bottom: 10px;
}

.mission-header p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mission-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.mission-stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mission-stat-item:hover {
    background: #e8f4ea;
    transform: translateY(-3px);
}

.stat-value {
    font-size: 1.8em;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Section impact global CORRIGÉE */
.impact-section {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 60px ;
    margin: 60px 0;
    border-radius: 12px;
}

.impact-container h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 40px;
    font-size: 2.2em;
}

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

.impact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.impact-number {
    font-size: 3.5em;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.impact-label {
    color: #666;
    font-size: 1em;
    line-height: 1.4;
}

/* Section CTA */
.mission-cta {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 12px;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2c5530;
}