    /* Solution simple et élégante pour le scroll */
    .main-content {
        display: flex;
        flex-direction: column-reverse;
    }

    @media (min-width: 1024px) {
        .main-content {
            flex-direction: row;
            align-items: flex-start;
        }

        .sidebar {
            position: sticky;
            top: 20px;
        }
    }

    /* Style pour le bouton "Laisser un avis" */
    .avis-toggle {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .avis-toggle:hover {
        background-color: #2c62a3;
    }

    /* Animation pour le formulaire */
    .avis-form {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .avis-form.active {
        max-height: 1000px;
    }

    /* Correction pour le CAPTCHA */
    .g-recaptcha {
        transform-origin: left top;
        transform: scale(0.95);
        margin-bottom: 10px;
        width: 100%;
    }

    /* Correction pour assurer la même largeur des boutons */
    .sidebar .button-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sidebar .button-container a {
        width: 100%;
        max-width: 100%;
    }

    /* Correction pour le bouton téléphone */
    .sidebar .contact-button {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Correction pour les écrans de petite taille */
    @media (max-width: 800px) {

        .sidebar .button-container a,
        .sidebar .contact-button {
            width: 100%;
            max-width: 100%;
        }
    }