body {
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
}

/* =======================
   🎯 HERO SECTION (À PROPOS)
   ======================= */

   .about-hero-section {
    position: relative;
    height: 100vh; /* Prend toute la hauteur de l'écran */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0c8e36; /* Fond vert AKNOVA */
    color: white;
}

.about-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.about-hero-content {
    max-width: 600px;
    text-align: left;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-hero-cta {
    display: inline-block;
    background-color: #94c120; /* Vert clair AKNOVA */
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about-hero-cta:hover {
    background-color: #0c8e36; /* Vert AKNOVA */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-media {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.about-hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Superposition sombre (optionnel) */
.about-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Assombrit l'arrière-plan */
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about-hero-media {
        max-width: 100%;
    }
}

/* =======================
   🕰️ SECTION NOTRE HISTOIRE (TIMELINE)
   ======================= */

   .our-history-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Fond clair */
    position: relative;
    overflow: hidden;
}

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

/* Titre de la section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c8e36 !important; /* Vert AKNOVA */
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #080808 !important;
    text-align: center;
    margin-bottom: 60px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #0c8e36; /* Ligne verticale verte */
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: #94c120; /* Point vert clair */
    border: 4px solid #0c8e36; /* Bordure verte */
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c8e36; /* Vert AKNOVA */
    margin-bottom: 10px;
}

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

.timeline-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 20px 20px 20px 40px;
    }

    .timeline-item::before {
        left: 10px !important;
    }

    .timeline::before {
        left: 20px;
    }
}

/* =======================
   🎯 SECTION MISSION, VISION ET VALEURS
   ======================= */

   .mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c8e36 10%, #94c120 90%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

/* Titre de la section */
.section-titl {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important; /* Vert AKNOVA */
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #dbdbdb;
    text-align: center;
    margin-bottom: 60px;
}

.vis{
    color: #000000;
}

/* Conteneur des cartes */
.mission-vision-cards {
    display: flex;
    justify-content: center;
    gap: 40px; /* Espacement entre les cartes */
    flex-wrap: wrap;
}

/* Carte Mission, Vision et Valeurs */
.mission-vision-card {
    background-color: #f9f9f9; /* Fond clair */
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 350px; /* Légèrement réduit pour 3 cartes */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: #0c8e36;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card-icon:hover {
    transform: rotate(15deg) scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c8e36 !important; /* Vert AKNOVA */
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-cards {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

.key-numbers-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c8e36;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.key-numbers {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.key-number {
    text-align: center;
    background-color: white;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.key-number:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: #0c8e36;
    margin-bottom: 10px;
}

.number-label {
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 768px) {
    .key-numbers {
        flex-direction: column;
        align-items: center;
    }

    .key-number {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* =======================
   🎯 SECTION CTA
   ======================= */

   .cta-section {
    padding: 100px 0;
    background-color: #0c8e36; /* Vert AKNOVA */
    color: white; /* Texte en blanc pour contraster */
    text-align: center;
}

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

/* Titre et description */
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Boutons CTA */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacement entre les boutons */
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: white;
    color: #0c8e36; /* Vert AKNOVA */
}

.cta-button.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}
