.home-container {
    margin: 0 auto;
    max-width: 1390px;
    text-align: left;
}

/* Header Styles */
.hamburger {
    display: none; /* Masqué par défaut */
    cursor: pointer;
    font-size: 24px; /* Taille du hamburger */
}

/* Banner Styles */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 5%;
}

.banner-left {
    flex: 1;
    padding-right: 20px;
}

.banner-left h1 {
    color: #004439;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 133.333% */
    text-align: left;
    margin-bottom: 49px;
}

.banner-left p {
    color: #0E6154;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    margin-bottom: 35px;
}

.banner-right {
    flex: 1;
    text-align: right;
}

.banner-right img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.buttons a {
    color: #004439;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
    position: relative;
}

.buttons a img {
    position: absolute;
    right: 32px;
}

.btn-primary, .btn-secondary {
    display: flex;
    width: 315px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-primary {
    border-radius: 20px;
    background: #FFC500;
}

.btn-primary:hover {
    text-decoration: none;
}

.btn-secondary {
    border-radius: 20px;
    border: 1px solid #004439;
}

.btn-secondary:hover {
    text-decoration: none;
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hidden {
    opacity: 0;
    transition: opacity 2s ease-out; /* Increased duration */
}

.visible {
    opacity: 1;
    animation: fadeIn 2s; /* Apply fadeIn animation */
}

/* A Propos Section Styles */
.a_propos {
    padding: 50px 5%;
    border-radius: 30px;
    background: #F2F4F4;
    margin: 0 5%;
}

.a_propos-header {
    display: flex;
    flex-direction: column; /* Change to column to stack icon and title vertically */
    align-items: center; /* Center horizontally */
    margin-bottom: 30px;
}

.a_propos-icon {
    position: absolute;
    left: 19px;
    top: 17px;
}

.a_propos h2 {
    color: #004439;
    font-size: 36px;
    font-weight: 600;
    text-align: center; /* Center text */
}

.a_propos-cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.card {
    height: 592px;
    padding: 56px 21px;
    flex: 1;
    text-align: center;
    border-radius: 30px;
    background: #FFF;
}

.card-image {
    width: 134px;
    height: 134px;
    margin-bottom: 20px;
}

.card h3 {
    color: #004439;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #3B605A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
    text-align: left;
    padding: 0 21px;
}

.card ul li {
    color: #0E6154;
    font-size: 14px;
    margin-bottom: 10px;
}

.card ul li span {
    font-weight: 700;
}

/* Partenaires Section Styles */
.partenaires {
    padding: 50px 5%;
    border-radius: 30px;
    text-align: center;
    margin: 50px 0;
}

.partenaires-phrase {
    color: #004439;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 183.333% */
    margin-bottom: 50px;
}

.partenaires-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.partenaire-logo {
    width: 226px;
    height: 94px;
}

.solution-progress-bar {
    width: 5px;
    background: #D3D3D3; /* Couleur grise pour la barre */
    position: relative;
    margin: 0 20px;
    border-radius: 5px;
}

.solution-progress-bar::before {
    content: '';
    position: absolute;
    width: 100%;
    background: #004439; /* Couleur verte pour la partie active */
    border-radius: 5px;
    transition: height 0.3s ease, top 0.3s ease;
    height: 25%; /* Par défaut, la hauteur de la première section */
    top: 0; /* Par défaut, aligné avec le premier onglet */
}

.solution-tab:nth-child(2).active ~ .solution-progress-bar::before {
    top: 25%;
    height: 25%;
}

.solution-tab:nth-child(3).active ~ .solution-progress-bar::before {
    top: 50%;
    height: 25%;
}

.solution-tab:nth-child(4).active ~ .solution-progress-bar::before {
    top: 75%;
    height: 25%;
}

/* Newsletter Section Styles */
.newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F1F4F4;
    border-radius: 30px;
    padding: 39px 57px;
    margin: 0 5% 70px 5%;
    gap: 128px;
}

.newsletter-left {
    flex: 1;
}

.newsletter-left h2 {
    color: #004439;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 34px; /* 170% */
}

.newsletter-right {
    flex: 1;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 6px 30px;
    font-size: 16px;
    color: #9DADAB;
    line-height: 38px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #DDE9E7;
    background: #E8EEEE;
}

.newsletter-input:focus {
    outline: none;
    outline: 1px solid #59B224;
}

.newsletter-button {
    padding: 6px 40px;
    color: #FFF;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #59B224;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 253.333% */
}

.newsletter-button:hover {
    background: #4a8a2e;
}

/* Mobile styles for newsletter section */
@media (max-width: 768px) {
    .newsletter-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .newsletter-input {
        width: calc(100% - 60px);
        padding: 6px 30px;
    }

    .newsletter-button {
        width: 100%;
        padding: 6px 30px;
    }
}

/* La Solution Section Styles */
.la_solution {
    padding: 50px 5%;
    border-radius: 30px;
    margin: 50px 0;
}

.la_solution .a_propos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.la_solution .a_propos-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.la_solution h2 {
    color: #004439;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}

.la_solution p {
    color: #0E6154;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
}

.solution-content {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.solution-left {
    flex: 1;
    text-align: center;
    width: 611px;
    height: 486px;
    flex-shrink: 0;
    border-radius: 30px;
    background: #F1F4F4;
}

.solution-image-container {
    max-width: 100%;
    height: auto;
}

.solution-right {
    flex: 1;
}

.solution-tabs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.solution-tab {
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    width: 510px;
    height: 62px;
    padding: 23px 33px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: var(--arrondi, 20px);
    background: #F1F4F4;
}

.solution-tab.active {
    background: #004439;
}

.solution-tab.active p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 183.333% */
}

.solution-tab p {
    text-align: left;
    margin: 0;
    color: #004439;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.solution-tab p span {
    font-weight: 700;
}

/* Avantages Section Styles */
.avantages {
    position: relative;
    padding: 50px 5%;
    border-radius: 30px;
    background: #F2F4F4;
    margin: 0 5%;
    background: #004439;
    height: auto; /* Change to auto */
}

.avantages .a_propos-header {
    margin-bottom: 61px;
    margin-top: 25px;
    position: relative; /* Ajouté pour le positionnement de l'icône */
}

.avantages .a_propos-header .a_propos-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px; /* Ajustez selon vos besoins */
    height: 50px; /* Ajustez selon vos besoins */
}

.avantages .a_propos-header h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px; /* 100% */
}

.avantages-content {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.avantages-tabs {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.avantages-tab {
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    flex: 1;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: var(--arrondi, 20px);
    background: rgba(255, 255, 255, 0.10);
}

.avantages-tab.active {
    background: #FFC500;
}

.avantages-tab.active p {
    color: #004439;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 162.5% */
}

.avantages-tab p {
    text-align: left;
    margin: 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 162.5% */
}

.avantages-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.avantages-detail {
    display: none;
}

.avantages-detail.active {
    display: block;
}

.avantages-detail-content {
    display: flex;
    align-items: center;
    gap: 109px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    padding: 38px;
}

.avantages-tab-title {
    display: none; /* Hide by default */
}

.avantages-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.avantage-block {
    display: flex;
    align-items: center;
    gap: 33px;
    padding: 26px 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
}

.avantage-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.avantage-content {
    flex: 1;
}

.avantage-content p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.avantages-pagination {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #FFC500;
}

/* Fullscreen Navigation Menu Styles */
.nav-menu.fullscreen {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1000;
    padding-top: 40px;
}

.nav-menu.fullscreen .nav {
    flex-direction: column;
    gap: 55px;
    margin-top: 89px;
}

.nav-menu.fullscreen .nav-item {
    display: block;
}

.nav-menu .buttons, .nav-menu img {
}

.nav-menu.fullscreen .buttons, .nav-menu.fullscreen img {
    display: flex; /* Affiche les boutons en mode plein écran */
    flex-direction: column;
    gap: 19px;
}

.nav-menu.fullscreen .buttons {
    margin-top: 89px;
    width: 315px;
}

input:focus-visible {
    outline: none;
}

.contact-container {
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
    padding: 70px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form textarea {
    height: 253px;
}

.contact-icon {
    display: block;
    margin: 0 auto; /* Centrer l'image */
}

.contact-container h2 {
    text-align: center; /* Centrer le texte */
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: #004439;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.form-control {
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #D8E8E8;
    background: var(--Color-fond, #F1F4F4);
    height: 30px
}

.btn-submit {
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    background: #59A337;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
}

.footer {
    padding: 24px 5%;
    border-top: 1px solid #DDE9E7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 9px;
}


.footer-tagline {
    color: #3B605A;
    margin: 0;
    font-size: 10px;
    font-weight: 500;
    line-height: 20px; /* 200% */
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.footer-tabs {
    display: flex;
    gap: 29px;
}

.footer-tab {
    color: #3B605A;
    text-decoration: none;
    transition: font-weight 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    line-height: 34px; /* 283.333% */
}

.footer-tab:hover {
    font-weight: 700;
    text-decoration: none;
    color: #3B605A;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link img {
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 60px 5% 20px 5%;
    }

    .form-group label {
        font-size: 14px;
        line-height: 20px;
    }

    .form-control {
        font-size: 16px;
    }

    .btn-submit {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        height: 50px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 5%;
        margin-bottom: 41px;
    }

    .banner-left {
        order: 2;
        padding-right: 0;
    }

    .banner-right {
        order: 1;
        margin-bottom: 20px;
    }

    .banner-left h1 {
        margin-bottom: 21px;
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
    }

    .banner-left p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
        text-align: left;
    }

    .buttons {
        flex-direction: column;
        gap: 19px;
    }

    .btn-primary, .btn-secondary {
        display: flex;
        width: auto;
        height: 50px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .avantages-pagination {
        display: flex; /* Display pagination on mobile */
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .a_propos h2 {
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px; /* 108.333% */
    }

    .a_propos-icon {
        margin-bottom: 26px;
    }

    .card ul li {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 185.714% */
    }

    .a_propos-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        margin-bottom: 20px;
    }

    .card:last-child {
        margin-bottom: 0;
    }

    .newsletter {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 45px 5% 0 5%;
        gap: 50px;
    }

    .newsletter-left {
        padding-right: 0;
    }

    .newsletter-left h1 {
        margin-bottom: 25px;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px; /* 200% */
    }

    .newsletter-left label {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
        text-align: left;
    }

    .email-container {
        flex-direction: column;
        gap: 10px;
    }

    .email-container input[type="email"],
    .email-container button {
        width: 100%;
        flex: none;
    }

    .newsletter-right {
        margin-top: 20px;
        width: 100%;
    }

    .nav-menu {
        display: none; /* Masqué sur mobile par défaut */
    }

    .hamburger {
        display: block; /* Affiche le hamburger sur mobile */
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-right {
        flex-direction: column;
        gap: 24px;
    }

    .footer-tabs {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .header .logo {
        display: none; /* Cache le logo par défaut */
    }

    .header .favicon {
        display: block; /* Affiche le favicon */
        max-height: 40px; /* Ajuste la taille du favicon */
    }

    .avantages-tabs {
        display: none;
    }

    .avantages-text {
        height: auto;
        flex-direction: column; /* Ensure column layout for mobile */
        padding: 26px 0;
    }

    .avantages-detail-content {
        flex-direction: column;
    }

    .avantages-text ul {
        padding: 0 20px;
    }

    .solution-content {
        flex-direction: column;
        align-items: center;
    }

    .solution-left, .solution-right {
        width: 100%;
    }

    .solution-tabs {
        display: none;
    }

    .solution-tab {
        display: none;
    }

    .solution-tab.active {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .solution-tab p {
        font-size: 16px;
        font-weight: 600;
    }

    .solution-image-container {
        width: 100%;
        text-align: center;
    }

    .solution-image-container img {
        width: 100%;
        height: auto;
    }

    .solution-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        cursor: pointer;
    }

    .dot.active {
        background: #FFC500;
    }

    .la_solution .dot.active {
        background: #004439;
    }

    .a_propos-cards {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .a_propos .card {
        transition: transform 0.5s ease-in-out;
        padding: 56px 18px;
    }

    .a_propos .card:not(.active) {
        display: none;
    }

    .a_propos-pagination {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .a_propos-pagination .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .a_propos-pagination .dot.active {
        background-color: #717171;
    }
    .email-container input[type="email"] {
        padding: 0;
    }
}

/* Intro Section Styles */
.intro-section {
    padding: 60px 5% 0;
    text-align: center;
}

.intro-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 58px;
}

.intro-favicon {
    margin-bottom: 16px;
}

.intro-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 68, 57, 0.06);
    border: 1px solid #004439;
    border-radius: 20px;
    color: #004439;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 34px;
}

.intro-heading {
    color: #004439;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 62px; /* 172.222% */
}

.intro-vision {
    background: #004439;
    border-radius: 30px;
    padding: 60px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.vision-content {
    flex: 1;
    text-align: left;
    padding-right: 40px;
}

.vision-badge {
    display: inline-block;
    padding: 2px 28px;
    color: #59B224;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 31px;
    border-radius: 30px;
    border: 1px solid #59B224;
    line-height: 34px;
    background: rgba(89, 178, 36, 0.10);
}

.vision-text {
    margin: 0;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px; /* 186.667% */
}

.vision-image {
    flex: 1;
    text-align: right;
}

.vision-image img {
    width: 100%;
    height: auto;
}

.vision-image-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}


/* Mobile styles for intro section */
@media (max-width: 768px) {
    .intro-section {
        padding: 40px 5% 0;
    }

    .intro-heading {
        font-size: 24px;
    }

    .intro-vision {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }

    .vision-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .vision-text {
        font-size: 14px;
        text-align: left;
    }

    .vision-text br {
        display: none;
    }
}

/* Mission Section Styles */
.mission-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 67px;
    margin-bottom: 70px;
    padding: 0 5%;
}

.mission-left {
    flex: 1;
    background: #F1F4F4;
    border-radius: 30px;
    padding: 36px 41px;
}

.mission-badge {
    display: inline-block;
    padding: 2px 28px;
    color: #59B224;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 30px;
    border: 1px solid #59B224;
    line-height: 34px;
    background: rgba(0, 68, 57, 0.06);
}

.mission-heading {
    color: #004439;
    margin-bottom: 43px;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px; /* 180% */
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-item img {
    
}

.mission-item p {
    color: #3B605A;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.mission-right {
    flex: 1;
}

.mission-right img {
    max-width: 100%;
    height: auto;
}

/* Mobile styles for mission section */
@media (max-width: 768px) {
    .mission-section {
        flex-direction: column-reverse;
        padding: 0 5%;
        margin-bottom: 50px;
    }

    .mission-left {
        padding: 40px 20px;
    }

    .mission-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .mission-item {
        gap: 12px;
    }

    .mission-item p {
        font-size: 14px;
        line-height: 24px;
    }

    .mission-right {
        margin-bottom: 30px;
        width: 100%;
    }
}

/* Objectifs Section Styles */
.objectifs-section {
    border-radius: 30px;
    padding: 0 5%;
    margin-bottom: 70px;
}

.objectifs {
    padding: 49px 47px 46px 47px;
    border-radius: 30px;
    background: #F1F4F4;
}

.objectifs-heading {
    text-align: center;
    margin-bottom: 32px;
    color: #004439;
    font-size: 32px;
    font-weight: 700;
    line-height: 47px; /* 146.875% */
}

.objectifs-cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.objectif-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #DDE9E7;
    background: #FFF;
    padding: 35px;
}

.objectif-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}

.objectif-card h3 {
    color: #004439;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px; /* 185.714% */
}

/* Mobile styles for objectifs section */
@media (max-width: 768px) {
    .objectifs {
        padding: 30px 20px;
    }

    .objectifs-section {
        padding: 40px 20px;
    }

    .objectifs-heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .objectifs-cards {
        flex-direction: column;
        gap: 32px;
    }

    .objectif-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }

    .objectif-card h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Service Section Styles */
.service {
    display: flex;
    gap: 67px;
    padding: 0 5%;
    margin: 70px 0;
}

.service-left {
    flex: 1;
    background: #F1F4F4;
    border-radius: 30px;
    padding: 28px 31px 43px 42px;
}

.service-left h2 {
    color: #004439;
    font-size: 32px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 15px;
}

.service-description {
    color: #3B605A;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px; /* 200% */
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-item p {
    color: #9DADAB;
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 214.286% */
}

.service-right {
    flex: 1;
    background: #F1F4F4;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px 58px 49px;
}

.service-right img {
    max-width: 100%;
    height: auto;
}

/* Mobile styles for service section */
@media (max-width: 768px) {
    .service {
        flex-direction: column;
        gap: 32px;
        margin: 50px 0;
    }

    .service-left {
        padding: 40px 20px;
    }

    .service-left h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .service-description {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .service-description br {
        display: none;
    }

    .service-items {
        gap: 20px;
    }

    .service-item {
        gap: 12px;
    }

    .service-item img {
        width: 32px;
        height: 32px;
    }

    .service-right {
        padding: 30px 20px;
    }
}

/* Demarrage Section Styles */
.demarrage {
    background: #F1F4F4;
    border-radius: 30px;
    padding: 50px 61px 45px 61px;
    margin: 0 5% 70px 5%;
    text-align: center;
}

.demarrage-title {
    color: #004439;
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px; /* 100% */
}

.demarrage-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 47px;
}

.demarrage-card {
    flex: 1;
    display: flex;
    gap: 21px;
    background: #FFF;
    border-radius: 20px;
    padding: 18px;
    text-align: left;
}

.card-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    color: #3B605A;
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px; /* 185.714% */
}

.card-content p {
    color: #3B605A;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
    margin: 0;
}

.btn-start {
    display: inline-block;
    padding: 11px 130px;
    background: #59B224;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    color: #FFF;
    font-family: "Open Sans";
    font-style: normal;
    line-height: 28px; /* 175% */
}

.btn-start:hover {
    background: #59B224;
    color: #FFF;
    text-decoration: none;
}

/* Mobile styles for demarrage section */
@media (max-width: 768px) {
    .demarrage {
        padding: 40px 20px;
        margin: 0 5% 50px 5%;
    }

    .demarrage-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }

    .demarrage-cards {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .demarrage-card {
        padding: 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-content h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .btn-start {
        width: calc(100% - 40px);
        padding: 12px 20px;
    }
}

/* Revolution Section Styles */
.revolution {
    display: flex;
    gap: 67px;
    padding: 0 5%;
    margin: 70px 0;
}

.revolution-left {
    flex: 1;
    background: #F1F4F4;
    border-radius: 30px;
    padding: 52px 57px;
}

.revolution-left h2 {
    color: #004439;
    margin-bottom: 27px;
    font-size: 26px;
    font-weight: 700;
    line-height: 32px; /* 123.077% */
}

.revolution-text {
    color: #004439;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px; /* 200% */
}

.btn-explore {
    display: inline-block;
    padding: 11px 37px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    background: #59B224;
}

.btn-explore:hover {
    background: #59B224;
    text-decoration: none;
    color: #FFF;
}

.revolution-right {
    flex: 1;
    background: #F1F4F4;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 50px 0 50px;
}

.revolution-right img {
    max-width: 100%;
    height: auto;
}

/* Mobile styles for revolution section */
@media (max-width: 768px) {
    .revolution {
        flex-direction: column;
        gap: 32px;
        margin: 50px 0;
    }

    .revolution-left {
        padding: 40px 20px;
    }

    .revolution-left h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .revolution-text {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .btn-explore {
        width: calc(100% - 40px);
        text-align: center;
        padding: 12px 20px;
    }

    .revolution-right {
        padding: 30px 20px;
    }
}

/* Avantages Section Mobile Styles */
@media (max-width: 768px) {
    .avantages {
        padding: 40px 20px;
    }

    .avantages .a_propos-header h2 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 10px;
    }

    .avantages-detail-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .avantages-detail-content img {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .avantage-block {
        padding: 15px;
        gap: 15px;
    }

    .avantage-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .avantage-icon {
        width: 30px;
        height: 30px;
    }
}

/* Mission Section Mobile Styles */
@media (max-width: 768px) {
    .mission-section {
        gap: 30px;
        margin: 0 0 50px 0;
    }

    .mission-left {
        padding: 30px 20px;
    }

    .mission-items {
        gap: 15px;
    }
}

/* Service Section Mobile Styles */
@media (max-width: 768px) {
    .service {
        margin: 50px 0;
        padding: 40px 20px;
    }

    .service-left, .service-right {
        padding: 30px 20px;
    }

    .service-items {
        gap: 15px;
    }
}

/* Revolution Section Mobile Styles */
@media (max-width: 768px) {
    .revolution {
        margin: 50px 0;
        padding: 40px 20px;
    }

    .revolution-left {
        padding: 30px 20px;
    }

    .btn-explore {
        display: block;
        margin: 0 auto;
        text-align: center;
        padding: 11px 20px;
    }
}

/* Newsletter Section Mobile Styles */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        width: calc(100% - 40px);
        padding: 6px 20px;
    }

    .newsletter-button {
        width: 100%;
    }
}

/* Demarrage Section Mobile Styles */
@media (max-width: 768px) {

    .btn-start {
        display: block;
        padding: 11px 20px;
        text-align: center;
    }
}
