.bottom-section {
    background: #1e1e1e;
    color: #ccc;
    padding: 50px 20px;
    font-size: 14px; /* ✅ Base standard pour tout le texte */
    line-height: 1.6;
}

.bottom-container {
    max-width: 1140px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.bottom-item {
    flex: 1;
    min-width: 220px;
}

/* ✅ Titres harmonisés */
.bottom-item h3 {
    color: #f39c12;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ✅ Paragraphes (adresse, numéros, fax) */
.bottom-item p {
    margin: 5px 0;
    font-size: 14px;
}

/* ✅ Liens textes (utiles, etc.) */
.bottom-item a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
}

.bottom-item a:hover {
    color: #fff;
}

/* ✅ Liste liens utiles */
.bottom-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom-item ul li {
    margin-bottom: 5px;
}

/* ✅ Icônes réseaux sociaux */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 20px;  /* On conserve la taille des icônes */
    color: #f39c12;
}

.social-icons a:hover {
    color: #fff;
}
