/* Styles généraux */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fefefe;
}

header {
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 6px 5px 8px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    padding: 20px 30px;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    width: 90px;
    height: auto;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    font-size: 26px;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #0F50F6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
    }

    .mobile-menu a {
        margin: 10px 0;
    }
}