body {
    font-family: Arial, sans-serif;
    margin: 20 ;
    padding: 0;
    line-height: 1.6;
    color: #0b0b0b; /* Ajuste la couleur du texte si nécessaire */
}

header {
    background: #346981;
    color: #040404;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: #0f0e0e;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

header nav ul li ul.dropdown {
    display: none;
    position: absolute;
    background: #0b0b0b;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
}

header nav ul li:hover ul.dropdown {
    display: block;
}

header nav ul li ul.dropdown li a {
    color: #fff;
    padding: 0.5rem;
    display: block;
}

/* Style du footer */
footer {
    background: #346981;
    color: #fbf8f8;
    text-align: center;
    padding: 0rem 0;
    position: relative; /* Assure que le footer ne cache pas le bouton */
}

/* Style du switcher de langue dans le footer */
.language-switcher {
    position: fixed;
    bottom: 20px; /* Espace par rapport au bas de la page */
    right: 20px;  /* Espace par rapport au côté droit de la page */
    z-index: 100;  /* Assure que le bouton est au-dessus des autres éléments */
    display: flex;
    gap: 10px;
}

.language-switcher button {
    background-color: #040404;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.language-switcher button:hover {
    background-color: #111010;
    transform: scale(1.05);
}

.language-switcher button.active {
    background-color: #555;
    font-weight: bold;
    text-decoration: underline;
}

/* Navigation principale */
nav ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
    list-style: none;
    background: #f4f4f4;
    border-bottom: 1px solid #ccc;
    margin: 1rem 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
}

section {
    margin: 2rem 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;

}

.accueil {
     text-align: right;
     margin-top: -200px;
}

.aerien {
    text-align: right;
    margin-top: -180px;
    margin-right: 50px;
}

.douane {
    text-align: right;
    margin-top: -180px;
    margin-right: 50px;
}

.log {
    text-align: right;
    margin-top: -180px;
    margin-right: 50px;
}

.maritime {
    text-align: right;
    margin-top: -180px;
    margin-right: 50px;
}

form label {
    display: block;
    margin-top: 1rem;
}

form input, form textarea, form button {
    display: block;
    margin-top: 0.5rem;
    padding: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.logo-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}