        
        
        body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f9fa;
        }

        .container {
            text-align: center;
        }


        .btn-custom {
            background-color: #28a745;
            color: white;
            border-radius: 50px;
        }
        .btn-custom:hover {
            background-color: #218838;
            color: white;

        }

        .btn-custom-danger {
            background-color: #dd0b0b;
            color: white;
            border-radius: 50px;
        }
        .btn-custom-danger:hover {
            background-color: #b01515;
            color: white;
        }
        .btn-copy {
            background-color: #007bff;
            color: white;
            border-radius: 50px;
        }
        .btn-copy:hover {
            background-color: #0056b3;
            color: white;
        }

        .btn-edit {
            background-color: #ffc107;
            color: black;
            border-radius: 50px;
        }
        .btn-edit:hover {
            background-color: #e0a800;
            color: black;
        }
        

        .btn-bookmark {
            background-color: #ffc107;
            color: black;
            border-radius: 50px;
        }
        .btn-bookmark:hover {
            background-color: #e0a800;
            color: black;
        }
        .input-group {
            max-width: 400px;
            margin: auto;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            padding: 10px;
            background: white;
        }
        .form-control {
            border-top-left-radius: 50px;
            border-bottom-left-radius: 50px;
        }
        .navbar {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
        }



                /* Styles généraux du footer */
        .footer {
            padding-top: 40px;
            padding-bottom: 20px;
            position: relative;
            width: 100%;
            bottom: 10px;
            text-align: center;
            font-size: 0.9rem;
            margin-top: auto;  /* Cela garantit que le footer reste en bas */
            bottom: 0;
        }

        .footer a {
            color: #F53838;  /* Couleur des liens */
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
            color: #D33B3B;  /* Couleur des liens au survol */
        }

        .footer p {
            color: #6c757d;  /* Couleur du texte des paragraphes */
            font-size: 0.9rem;
        }

        .footer .footer-links {
            margin-top: 20px;
        }

        .footer .footer-links a {
            margin-right: 15px;
            font-size: 0.9rem;
        }

        .footer .footer-links a:hover {
            color: #D33B3B;
        }

        .footer .credits {
            color: #6c757d;
            font-size: 0.8rem;
        }

        .footer .credits a {
            color: #6c757d;
        }

        .footer .credits a:hover {
            color: #F53838;
        }

        /* Ajout de la section contact, social media, etc. */
        .footer .row {
            display: flex;
            justify-content: space-between;
        }

        .footer .col {
            margin-bottom: 30px;
        }

        .footer h5 {
            color: #333;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .footer .list-unstyled {
            padding-left: 0;
            list-style-type: none;
        }

        .footer .list-unstyled li {
            margin-bottom: 8px;
        }

        .footer .list-inline-item {
            margin-right: 10px;
        }

        /* Style pour la note en bas */
        .footer .note {
            text-align: center;
            margin-top: 20px;
            font-size: 0.8rem;
            color: #6c757d;
        }

        /* Pour les icônes de réseaux sociaux */
        .footer .bi {
            fill: #F53838;
            width: 20px;
            height: 20px;
        }

        /* Style pour les sections de footer */
        .footer .footer-links {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }

        /* Mobile: on applique un padding adapté */
        @media (max-width: 768px) {
            .footer .container {
                padding-left: 10px;
                padding-right: 10px;
            }

            .footer .row {
                flex-direction: column;
            }

            .footer .col {
                margin-bottom: 20px;
            }
        }




/* Mobile: on applique un padding adapté */
@media (max-width: 768px) {
    .footer .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer .row {
        flex-direction: column;
    }

    .footer .col {
        margin-bottom: 20px;
    }

    .navbar {
        position: sticky;
        top: 0;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        text-transform: uppercase;
    }

}

/* Navbar style for larger screens */
@media (min-width: 769px) {
    .navbar-nav .nav-item {
        margin-left: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        text-transform: uppercase;
    }
}

/* Réduit l’espace entre le header/form et les avantages */
.features-section {
    margin-top: -30px; /* Ajuste selon le besoin */
    padding-top: 0 !important;
}