/* Styles pour une présentation professionnelle avec une dominante bleue pétrole */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

header {
    text-align: center;
    padding: 1em;
    background-color: #1e3c72; /* Bleu pétrole */
    color: white;
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5em;
}

.language-switcher img.flag {
    width: 24px;
    height: 24px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1em;
}

.faq-item {
    margin: 1em 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1em;
}

.question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #1e3c72;
}

.question .icon {
    margin-right: 0.5em;
}

.answer {
    display: none;
    padding-left: 1.5em;
    color: #444;
}

.faq-media {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
}

.faq-media img, .faq-media video {
    max-width: 200px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: transform 0.2s;
}

.faq-media img:hover, .faq-media video:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .faq-media {
        flex-direction: column;
        align-items: flex-start;
    }
}
