* {
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Styles généraux */
body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Sections FAQ */
.faq-section {
    background-color: #0044cc;
    color: white;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.faq-section:hover {
    background-color: #0033aa;
}

.faq-content {
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Moniteurs */
.moniteurs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.moniteur {
    text-align: center;
}

.circle-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0044cc;
}

.moniteur-name {
    margin-top: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Voitures */
.voitures {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.voiture {
    text-align: center;
}

.car-img {
    width: 180px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.voiture-name {
    margin-top: 8px;
    font-size: 1.1em;
    font-weight: bold;
}
