:root {
    --golden-yellow: #ffd700;
    --primary-blue: #0a3a48;
    --bs-heading-color: #ffd700;
    --bs-dropdown-link-active-bg: #ffd700;
    --bs-body-color: #fff;
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Poppins', sans-serif;
    --vh: 1vh;
    /* Variable personnalisée pour une hauteur dynamique */
}

.dropdown-menu {
    --bs-dropdown-link-active-color: #0a3a48;
    --bs-dropdown-link-active-bg: #ffd700;
    --bs-dropdown-bg: #0a3a48;
    --bs-dropdown-link-hover-bg: #ffd700;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* La hauteur minimale est 100% de la fenêtre */
    font-family: var(--font-text);
    padding-top: 76px;
    /* Pour compenser la navbar fixed-top */
}

body,
html {
    margin: 0;
    padding: 0;
    /*overflow-x: hidden; /* Supprime les débordements horizontaux */
    background: linear-gradient(to right, #647A6E, #1D777F);
}

.text-shadow {
    text-shadow: 3px 1px 6px black;
}

.text-shadow-light {
    text-shadow: 1px 1px 1px black;
}

.img-small {
    max-width: 64px;
    height: auto;
}

.emphasis {
    font-style: italic;
    color: var(--golden-yellow);
}

.key-point {
    font-weight: 600;
    color: var(--golden-yellow);
}

.quote {
    border-left: 4px solid #fff;
    padding-left: 1em;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--golden-yellow);
}

h1.display-4.mb-4.title {
    text-transform: uppercase;
    text-shadow: 6px 3px 15px black;

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* 700 est généralement utilisé pour le gras */
    font-size: 2.5rem;
    /* Ajustez la taille selon vos besoins */
    text-align: center;
    /* Alignement au centre */
    margin-top: 20px;
}

p.takeaway {
    text-align: center;
    font-weight: bold;
}

p.lead.mb-4 {
    font-family: 'Poppins', sans-serif;
    /* Police Poppins */
    font-weight: 100;
    font-size: 2.0rem;
    /* Taille du texte */
    color: #fff;
    /* Couleur du texte */
    text-align: center;
    /* Alignement */
    margin-top: 20px;
    /* Espacement au-dessus */
}

h2.lead.mb-4 {
    font-family: 'Poppins', sans-serif;
    /* Police Poppins */
    font-weight: 100;
    font-size: 2.0rem;
    /* Taille du texte */
    color: #fff;
    /* Couleur du texte */
    text-align: center;
    /* Alignement */
    margin-top: 20px;
    /* Espacement au-dessus */
}

/* Navbar personnalisée */
.navbar {
    background-color: var(--primary-blue) !important;
    transition: background-color 0.3s ease;
    /*padding: 10px 20px;*/
    padding-top: 10px;
    padding-bottom: 0px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 6px 3px 15px black;

    /* Ombre subtile */
    transition: box-shadow 0.3s ease-in-out;
}

.navbar-brand {
    font-weight: bold;
    color: var(--golden-yellow) !important;
    font-family: 'Montserrat', sans-serif;
    font-variant-caps: small-caps;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0px;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

/* Espacement de l'icône chevron */
.nav-link i {
    margin-left: 5px;
    font-size: 0.6em;
}

/* Couleur normale des liens de la navbar */
.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 6px 3px 15px black;

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* 700 est généralement utilisé pour le gras */
    font-size: 1.0rem;
    /* Ajustez la taille selon vos besoins */

}

/* Couleur au survol des liens de la navbar */
.navbar-nav .nav-link:hover {
    color: var(--golden-yellow) !important;
    text-decoration: underline;
}

/* Mettre tous les titres de la navbar et les éléments de dropdown en majuscules */
.navbar-nav .nav-link,
.dropdown-item {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    /* Mettre en majuscule */
    text-shadow: 6px 3px 15px black;

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* 700 est généralement utilisé pour le gras */
    font-size: 1.0rem;
    /* Ajustez la taille selon vos besoins */
    color: white;
}

.navbar-toggler {
    margin-left: auto !important;
}

.navbar-logo {
    height: 60px;
    /*    height: 40px;*/
    vertical-align: middle;
    margin-right: 8px;
    margin-left: 0px;
    /* Espacement entre le logo et le texte */
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(10, 58, 72, 0.8), rgba(10, 58, 72, 0.8)), url('../img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 76px - 10px);
    /* Taille navbar & padding*/
    display: flex;
    align-items: center;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Occupe toute la hauteur de l'écran */

    margin-bottom: 0;
    padding-bottom: 0;

    z-index: 1;

}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.5);*/
    /* Superpose un filtre sombre (optionnel) */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    /* Couleur du texte */
    z-index: 1;
    /* Assure que le texte est visible */
}

.scroll-down-btn {
    position: absolute;
    bottom: -10px;
    /* Ajuste la position selon le design */
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--golden-yellow);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down-btn:hover {
    color: white;
    /* var(--primary-blue); /* Change la couleur au survol */
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Content overlay */
.content-overlay {
    position: relative;
    background-color: white;
    z-index: 2;
    margin-top: 100vh;
    /* Ajoute de l'espace avant le footer */
}

/* Sections de contenu */
.content-section {
    padding: 1rem 0;
    flex-grow: 1;

    background: linear-gradient(to right, #647A6E, #1D777F);
    /* background: transparent;
    /* Cette section prend tout l'espace restant */
}

.content-section-index-padding {
    padding: 5rem 0;
}

.whitefont {
    color: white;
}

/* Boutons personnalisés */
.btn-primary {
    background-color: var(--golden-yellow);
    border-color: var(--golden-yellow);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: var(--primary-blue);
}

/* Liste avec checkmarks */
.benefits-list {
    list-style: none;
    padding-left: 1.5rem;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefits-list li::before {
    content: '✓';
    /*color: var(--golden-yellow);*/
    position: absolute;
    left: 0;
}

/* Liste avec bullets */
.needs-list {
    list-style: none;
    padding-left: 1.5rem;
}

.needs-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.needs-list li::before {
    content: '☆';
    /*color: var(--golden-yellow);*/
    position: absolute;
    left: 0;
}

.process-list {
    list-style: none;
    padding-left: 1.5rem;
}

.process-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-list li::before {
    content: '➤';
    /*    color: var(--golden-yellow);*/
    position: absolute;
    left: 0;
}

.result-list {
    list-style: none;
    padding-left: 1.5rem;
}

.result-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.result-list li::before {
    content: '◉';
    /*    color: var(--golden-yellow);*/
    position: absolute;
    left: 0;
}

/* Animation pour le défilement */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Afficher le dropdown au survol */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Style pour les icônes LinkedIn */
.linkedin-icon {
    width: 20px;
    /* Taille réduite du logo LinkedIn */
    height: auto;
}

/* Style pour les icônes LinkedIn */
.linkedin-icon-big {
    width: 40px;
    /* Taille réduite du logo LinkedIn */
    height: auto;
}

/* Footer adjustments */

.footer-bar {
    background-color: var(--primary-blue) !important;
    z-index: 3;
    position: relative;
    padding: 0 0;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    margin-top: auto;
    /* Force le footer à être en bas */

}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-bar .container {
    padding: 0;
    /* Enlever l'espacement interne de la container */

}

/* Réduction de la taille de la police */
.footer-bar p,
.footer-bar a {
    font-size: 10px;
    /* Taille de police plus petite */
    line-height: 1.4;
    /* Espacement entre les lignes plus petit */
}

.footer-bar a:hover {
    color: var(--golden-yellow) !important;
    text-decoration: underline;
    /* Optionnel, pour souligner les liens au survol */
}

/* Espacement entre les éléments du footer */
.footer-bar .text-center p {
    margin-bottom: 8px;
    /* Réduit l'espacement entre les paragraphes */
}

.footer-bar a {
    font-size: 10px;
    /* Taille de police réduite */
    text-decoration: none;
    /* Enlève le soulignement des liens */
}

.footer-bar a:hover {
    color: var(--golden-yellow);
    /* Applique un changement de couleur au survol */
}

.footer-bar .linkedin-icon {
    width: 18px;
    /* Réduit la taille de l'icône LinkedIn */
    height: auto;
}

/* Réduction de l'espacement entre les liens */
.footer-bar .text-center a {
    margin: 0 5px;
    color: white;
    /* Réduit l'espacement entre les liens */
}

/* Indicateur pour remonter */
#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--golden-yellow);
    color: var(--primary-blue);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

#scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scroll-to-top i {
    font-size: 16px;
}

/**/
.page-banner {
    background: linear-gradient(rgba(10, 58, 72, 0.8), rgba(10, 58, 72, 0.8)), url('../img/background.webp');
    background-size: cover;
    background-position: center;
    color: white;
    /*padding: 40px 0;*/
    padding-top: 120px;
}

/* Pour les catégories pages de résumés*/
.btn-link {
    color: white;
    /*var(--primary-blue);*/
    text-decoration: none;
    font-weight: bold;
}

.btn-link:hover {
    text-decoration: underline;
    color: var(--golden-yellow);
}

.title-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;

    color: var(--golden-yellow);
}

.title-link:hover {
    color: var(--golden-yellow);
    text-decoration: underline;
}

/* Style personnalisé pour le bouton "Retour vers Services" */
.btn-custom {
    border: 2px solid var(--golden-yellow);
    /* Bordure jaune */
    color: var(--golden-yellow);
    /* Texte jaune */
    background-color: transparent;
    /* Fond transparent */
    padding: 10px 20px;
    /* Espacement interne */
    font-size: 16px;
    /* Taille du texte */
    font-weight: bold;
    /* Texte en gras */
    text-transform: uppercase;
    /* Texte en majuscules */
    transition: background-color 0.3s, color 0.3s;
    /* Animation douce */
}

.btn-custom:hover {
    background-color: var(--golden-yellow);
    /* Fond jaune au survol */
    color: #fff;
    /* Texte blanc au survol */
}

/* Section contact info */
.contact-info img {
    height: 40%;
    /* Rendre l'image responsive */
    border-radius: 10px;
    /* Arrondir les coins de l'image */
    object-fit: cover;
    /* S'assurer que l'image remplit bien son conteneur */
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--golden-yellow);
}

/* Colonne droite - Formulaire */
.card {
    border-radius: 10px;
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: var(--golden-yellow);
}

.card-body {
    padding: 1.5rem;
}

.card-body .form-label {
    font-weight: bold;
}

.card-body .form-control {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ccc;
}

.card-body .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(10, 58, 72, 0.5);
}

.btn-primary {
    background-color: var(--golden-yellow);
    border-color: var(--golden-yellow);
    color: var(--primary-blue);
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: var(--primary-blue);
}

/* Centrage vertical et horizontal */

.col-md-4.d-flex.justify-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centre verticalement */
}

.shadowed {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

input {
    color: black !important;
}

.form-control {
    color: black;
}

#message {
    color: black;
}

.row-no-padding {
    padding-right: 0;
    padding-left: 0;
}

/* Process Steps Component */
.step-button {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: transparent;
}

.step-button:hover:not(.active) {
    background-color: rgba(88, 80, 236, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.step-button.active {
    background-color: var(--golden-yellow) !important;
    color: var(--primary-blue) !important;
}

.step-button i {
    text-shadow: 3px 1px 6px black;
}

.step-content {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--golden-yellow);
    text-shadow: 3px 1px 6px black;
}

.step-content p {
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 1px black;
}

/*---*/
.process-step {
    padding: 0.5rem;
    border-left: 4px solid var(--golden-yellow);
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.process-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--golden-yellow);
    margin: 2rem 0;
} .section {
    margin-bottom: 4rem;
}

.section-title {
    color: var(--golden-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.fa-icon {
    /*color: var(--golden-yellow);*/
    margin-right: 1rem;
}
/* Adding new styles for method section and case studies */
.method-card {
    background: var(--primary-blue);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.method-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.05);
}

.method-item:last-child {
    border-bottom: none;
}

.case-study {
    background: rgba(31, 74, 77, 0.8);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--golden-yellow);
}

.case-study-header {
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 1rem 0;
}
/*-- TESTIMONIALS *--*/
.testimonial-card {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    min-height: 300px;
    color: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author {
    font-weight: bold;
    margin-bottom: 0.2rem;
    color: var(--golden-yellow);
    font-family: 'Montserrat', sans-serif;
}

.testimonial-position {
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Style pour les indicateurs */
.carousel-indicators {
    position: relative;
    bottom: -20px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--golden-yellow);
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--golden-yellow);
    border-color: var(--golden-yellow);
    transform: scale(1.2);
}

/* Style pour les contrôles du carrousel */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--golden-yellow);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .page-banner {
        background: linear-gradient(rgba(10, 58, 72, 0.8), rgba(10, 58, 72, 0.8)), url('../img/background-768.webp');
    }

    /* Style de l'élément avant l'animation */
    [data-aos="fade-up"] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    /* Style appliqué quand l'élément devient visible (après le trigger) */
    [data-aos="fade-up"].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Met à jour la variable au chargement */
    html,
    body {
        height: 100%;
        /* Assure que le conteneur occupe toute la hauteur */
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0rem;
    }

    .hero-section {
        height: calc(var(--vh, 1vh) * 100);
        /* Adapte automatiquement */
        min-height: -webkit-fill-available;
        /* Pour Safari mobile */
        overflow: hidden;
        /* Évite les débordements */
        padding-top: 0px;
        /* Ajoute un peu d'espace en haut */
        padding-bottom: 20px;
        /* Ajoute un peu d'espace en bas */
        margin-bottom: 0 !important;
        /* Supprime toute marge inférieure */
        position: relative;
    }

    .hero-overlay {
        padding: 20px;
        /* Ajoute de l'espace pour éviter le débordement */
        position: relative;
        /* Assurez-vous qu'il ne sort pas des limites */
        top: auto;
        /* Enlevez tout décalage vers le haut */
        z-index: 1;
    }

    .hero-overlay h1,
    .hero-overlay p {
        margin: 0;
        padding: 0 10px;
        /* Ajoute un padding latéral pour mieux centrer le contenu */
    }

    .scroll-down-btn {
        bottom: -20px;
        /* Ajuste la position selon le design */
    }

    /* Content overlay */
    .content-overlay {
        position: relative;
        background-color: white;
        z-index: 2;
        margin-top: 100vh;
        /* Ajoute de l'espace avant le footer */
    }

    h1.display-4.mb-4.title {
        font-size: 1.8rem;
        /* Taille réduite pour mobile */
        margin-top: 10px;
        /* Réduction de l'espace au-dessus */
        text-align: center;
        /* Centrage du texte */
    }

    p.lead.mb-4 {
        font-size: 1.2rem;
        /* Taille réduite pour les paragraphes */
        margin-top: 10px;
        /* Réduction de l'espace supérieur */
    }

    h2.lead.mb-4 {
        font-size: 1.2rem;
        /* Taille réduite pour les paragraphes */
        margin-top: 10px;
        /* Réduction de l'espace supérieur */
    }

    .btn.btn-primary.btn-lg {
        font-size: 1rem;
        /* Réduction de la taille des boutons */
        padding: 0.5rem 1rem;
        /* Ajustement du padding */
    }

    /* Navbar ajustable */
    .navbar {
        height: auto;
        /* Hauteur flexible pour les petits écrans */
    }

    .contact-info {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-info img {
        max-width: 80%;
        margin-bottom: 1rem;
    }

    /* Ajuster la disposition des colonnes */
    .row {
        flex-direction: column;
        /* Ordre inversé */
        margin: 0 auto;
        /* Centrage */
    }

    .col-md-4,
    .col-md-8,
    .col-md-6 {
        width: 100%;
        text-align: center;
        /* Centrage du texte */
    }

    /* Ajustement global des images */
    img.img-fluid {
        max-width: 100%;
        height: auto;
        /* Conserve les proportions */
    }

    img.img-small {
        max-width: 50px;
        height: auto;
    }

    .shadowed {
        margin-bottom: 20px;
        /* Espacement sous les images */
    }

    /* Texte global */
    h2 {
        font-size: 1.5rem;
        /* Taille plus petite pour les titres */
    }

    p {
        font-size: 1rem;
        /* Taille réduite pour les paragraphes */
    }

    /* Réduction des marges dans les sections */
    .content-section {
        padding: 1rem 1rem;
        margin-top: 0 !important;
    }

    .content-section-index-padding {
        padding: 5rem 0;
    }

    .content-overlay {
        margin-top: 0;
        /* Ajoute de l'espace avant le footer */
    }

    /* Éviter le décalage des éléments */
    .navbar-nav .nav-item {
        position: relative;
        /* Pour que le sous-menu s'affiche par rapport à son parent */
    }

    /* Sous-menus sur mobile */
    .nav-item.dropdown .dropdown-menu {
        position: static;
        /* Désactive le positionnement absolu pour que le sous-menu s'empile naturellement */
        display: none;
        /* Cache les sous-menus par défaut */
        padding: 0;
        /* Réduisez les marges/paddings inutiles */
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
        /* Affiche le sous-menu lorsque l'élément parent est actif */
    }

    /* Empêche tout décalage horizontal */
    .navbar-nav {
        width: 100%;
        /* Assurez-vous que les éléments prennent toute la largeur */
    }

    .nav-link {
        text-align: left;
        /* Alignez le texte des liens si nécessaire */
    }

    /* Optionnel : Ajout de transition pour un effet plus fluide */
    .dropdown-menu {
        transition: all 0.3s ease-in-out;
    }

    .needs-list li {
        padding-left: 0;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .needs-list li::before {
        content: '';
    }

    .step-button {
        font-size: 0.9rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}