.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20%;
    margin-bottom: 5%;
}

.footer_line {
    width: 100%;
    height: 1px;
}

.footer_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Distribue les blocs équitablement */
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 3%;
}

.footer_textblock {
    display: flex;
    flex-direction: column;
    padding: 0 10px; /* Ajoute un peu d'espacement interne */
    box-sizing: border-box;
    min-width: 160px;
}

.footer_text {
    font-weight: 300;
    font-size: 0.8rem;
    margin: 0px;
    padding-bottom: 10px;
}

.footer_text_title {
    font-weight: 800;
    font-size: 0.9rem; 
    margin: 0px;
    padding-bottom: 10px;
}

/* Responsive: 2 colonnes sur petits écrans, 1 colonne sur très petits */
@media (max-width: 900px) {
    .footer_content {
        justify-content: flex-start;
    }
    .footer_textblock {
        width: calc(50% - 16px);
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .footer_textblock {
        width: 100%;
    }
}