.about-row .g-cols.via_grid {
    gap: 0!important;
}

.sticky-buttons .sb-icon {
    width: 32px!important;
    height: 32px!important;
}



/* Grid sur la rangée */
.contact-custom .vc_row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    align-items: stretch !important;
}

/* Chaque colonne prend toute la hauteur */
.contact-custom .vc_column_container {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.contact-custom .vc_column-inner {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    height: 100% !important;
}

/* Le wrapper du contenu */
.contact-custom .wpb_wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Le bouton reste en bas avec espacement uniforme */
.contact-custom .wpb_wrapper > *:last-child {
    margin-top: auto !important;
    margin-bottom: 20px !important;
}

/* Version responsive */
@media (max-width: 1024px) {
    .contact-custom .vc_row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .contact-custom .vc_row {
        grid-template-columns: 1fr !important;
    }
}


html {
    scroll-behavior: smooth;
}