footer {
    background: #162938;
    color: #fff;
    padding: 12px 12px;
    border-top: 3px solid #3498db;
    font-size: 0.9em;
    
    /*Positionne le pied de page en bas de page-container*/
    position: absolute;
    bottom: 0;
    width: 100%;
    /*height: 2.5rem;            /* Footer height */    
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo h2 {
    font-size: 1.4em;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 12px 0;
}

.footer-section {
    min-width: 160px;
    max-width: 200px;
}

.footer-section h3 {
    color: #3498db;
    font-size: 1em;
    margin-bottom: 6px;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.4;
    font-size: 0.9em;
    margin: 3px 0;
}

.contact-email {
    color: #3498db !important;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    color: #2980b9 !important;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 8px;
    color: #bdc3c7;
    font-size: 0.85em;
    margin-top: 6px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    footer {
        padding: 10px 10px;
    }

    .footer-logo h2 {
        font-size: 1.2em;
    }
}
