body {
    font-family: Arial, sans-serif;
}

header h1 {
    color: #6f4e37; /* couleur café */
}

section h2 {
    color: #3e2723;
}

.navbar-brand {
    font-weight: bold;
}

footer {
    background-color: #222;
    color: #f5f5f5;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left, .footer-right {
    margin-bottom: 10px;
}

.footer-left h3, .footer-right h4 {
    margin-bottom: 8px;
}

.footer a {
    color: #f5f5f5;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-left, .footer-right {
        margin-bottom: 15px;
    }
}
