.mission-statement {
    background: linear-gradient(135deg, #F8F4ED 0%, #eef3e4 100%);
    border-radius: 28px;
    padding: 36px;
    border: none;
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 12px 34px rgba(46, 89, 132, 0.09);
}

.mission-statement::before,
.mission-statement::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.mission-statement::before {
    width: 220px;
    height: 220px;
    background: rgba(111, 167, 67, 0.12);
    top: -100px;
    right: -70px;
}

.mission-statement::after {
    width: 160px;
    height: 160px;
    background: rgba(46, 89, 132, 0.07);
    bottom: -80px;
    left: -50px;
}

.mission-statement > * {
    position: relative;
    z-index: 1;
}

.mission-title {
    color: #2E5984;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #6FA743;
    border-radius: 2px;
}

.mission-content {
    text-align: center;
}

.mission-paragraph {
    color: #2E5984;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-paragraph:first-of-type {
    font-weight: 600;
    font-size: 20px;
}

.mission-paragraph:last-of-type {
    color: #5D7592;
    font-size: 17px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mission-statement {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .mission-paragraph {
        font-size: 16px;
    }
    
    .mission-paragraph:first-of-type {
        font-size: 18px;
    }
}

/* À propos - Même style que mission-statement */
.about-statement {
    background: linear-gradient(135deg, #F8F4ED 0%, #eef3e4 100%);
    border-radius: 32px;
    padding: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    box-shadow: 0 12px 34px rgba(46, 89, 132, 0.09);
}

.about-statement::before,
.about-statement::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.about-statement::before {
    width: 260px;
    height: 260px;
    background: rgba(111, 167, 67, 0.12);
    top: -120px;
    right: -80px;
}

.about-statement::after {
    width: 180px;
    height: 180px;
    background: rgba(46, 89, 132, 0.07);
    bottom: -90px;
    left: -60px;
}

.about-statement > * {
    position: relative;
    z-index: 1;
}

.about-title {
    color: #2E5984;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #6FA743;
    border-radius: 2px;
}

.about-content {
    text-align: center;
    width: 100%;
}

.about-subtitle {
    color: #2E5984;
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 20px;
}

.about-paragraph {
    color: #2E5984;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.about-paragraph.highlight {
    background: rgba(111, 167, 67, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6FA743;
    text-align: center;
    font-weight: 600;
}

.grades-title,
.why-title {
    color: #2E5984;
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(111, 167, 67, 0.2);
}

/* Grille des grades */
.grades-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.grade-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.grade-card:hover {
    transform: translateY(-5px);
}

.grade-header {
    padding: 20px;
    color: white;
    font-weight: 700;
}

.grade-header.premium {
    background: rgba(75, 156, 48, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6FA743;
    text-align: center;
    font-weight: 600;
}

.grade-header.good {
    background: rgba(75, 156, 48, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6FA743;
    text-align: center;
    font-weight: 600;
}

.grade-header.fair {
    background: rgba(75, 156, 48, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6FA743;
    text-align: center;
    font-weight: 600;
}

.grade-header.basic {
    background: rgba(75, 156, 48, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6FA743;
    text-align: center;
    font-weight: 600;
}

.grade-title {
    margin: 0;
    font-size: 20px;
    text-align: center;
}

.grade-details {
    padding: 20px;
    text-align: left;
}

.grade-details p {
    margin-bottom: 10px;
    color: #5D7592;
    line-height: 1.5;
    font-size: 14px;
}

.grade-details strong {
    color: #2E5984;
}

/* Avantages */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(111, 167, 67, 0.1);
}

.benefit-card:hover {
    border-color: #6FA743;
    box-shadow: 0 8px 25px rgba(111, 167, 67, 0.1);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-title {
    color: #2E5984;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-text {
    color: #5D7592;
    font-size: 14px;
    line-height: 1.5;
}