/* Styles de la section Hero */
.about-hero-section {
    background: linear-gradient(135deg, #886ab5 0%, #6a4c93 100%);
    padding: 30px 0;
    margin: 0;
    width: 100%;
}

.hero-icon-wrapper {
    display: inline-block;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.hero-icon-wrapper:hover {
    transform: scale(1.1);
}

.hero-icon-wrapper i {
    color: white;
    font-size: 5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    width: 100%;  
    margin: 0 auto;
    line-height: 1.8;
    padding: 0 20px;
}

/* Styles de la section Mission */
.mission-section {
    padding: 50px 0;
    background: white;
}

.mission-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mission-content {
    padding: 0 20px;
}

.mission-badge {
    display: inline-block;
    background: #886ab5;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mission-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.overlay-darken {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 15px;
}

/* Styles de la section Fonctionnalités */
.features-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.section-badge {
    display: inline-block;
    background: #886ab5;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #886ab5;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    text-align: center;
}

.feature-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    text-align: center;
}

/* Styles de la section CTA */
.cta-section {
    padding: 60px 0;
    background: white;
}

.bg-primary-800 {
    background: linear-gradient(135deg, #886ab5 0%, #6a4c93 100%);
}

.rounded-plus {
    border-radius: 20px;
}

.cta-section .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: #e05d2b !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 116, 60, 0.4);
}

.cta-title {
    font-size: 1.5rem;
}

.cta-arrow {
    display: none;
}

@media (min-width: 992px) {
    .cta-arrow {
        display: block;
    }
}

/* Styles de la section Statistiques */
.stats-section {
    background: #f8f9fa;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #886ab5;
    margin-bottom: 40px;
}

/* Fix for the text color consistency */
.stats-section p.text-lg {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #886ab5;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-card .icon-circle {
    height: 150px;
    aspect-ratio: 1;
    background: #886ab5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: transform 0.3s ease;
    margin: 0 auto 30px;
}

.stat-card:hover .icon-circle {
    transform: scale(1.05);
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #886ab5;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

/* Design Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mission-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-hero-section {
        padding: 40px 0;
    }

    .mission-content {
        padding: 0;
        margin-top: 30px;
    }
}
