.page-hero.apropos-hero {
    --hero-image: url('../images/hero/apropos.jpg');
}

/* Text Justify */
.text-justify {
    text-align: justify;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
}

.mission-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-image {
    border-radius: 20px;
    min-height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

/* Platform Section */
.platform-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.platform-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.platform-content h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.platform-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
    text-align-last: center;
}

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

.platform-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.08);
    transition: var(--transition-fast);
    text-align: center;
    flex: 1;
    max-width: 320px;
    min-width: 280px;
}

.platform-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 48, 135, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c2d82 0%, #6b1f2c 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.platform-feature h4 {
    margin-bottom: 0.75rem;
    text-align: center;
}

.platform-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: justify;
    text-align-last: center;
}

/* CTA */
.apropos-cta {
    background: linear-gradient(135deg, var(--couleur-primaire) 0%, var(--couleur-primaire-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.apropos-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.apropos-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image img {
        min-height: 300px;
    }

    .platform-features {
        flex-direction: column;
        align-items: center;
    }

    .platform-feature {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .platform-feature {
        min-width: auto;
        width: 100%;
    }
}
