body {
    font-family: 'Tajawal', sans-serif;
    background-color: #16123b;
    color: #0a0909;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h2, h3, h4 {
    color: #1e5180;
    margin-bottom: 20px;
}


h1 {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

h2 {
    font-weight: 500;
    font-size: 18px;
    margin-top: 30px;
}

.form-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 80%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
}

textarea {
    height: 100px;
    resize: vertical;
}

.radio-group, .checkbox-group {
    margin-top: 10px;
}

.radio-item, .checkbox-item {
    margin-bottom: 10px;
}

.radio-item input, .checkbox-item input {
    margin-left: 8px;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-color: #f0f0f0;
    border-radius: 3px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.rating input:checked ~ label {
    background-color: #ffb400;
    color: white;
}

.submit-btn {
    background-color: #1e5180;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #143b60;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.required:after {
    content: " *";
    color: #e53935;
}

.header {
    text-align: center;
    margin-bottom: 15px;
}

.header img {
    max-width: 150px;
    margin-bottom: 10px;
}
/* Style pour cacher les options */
.hidden {
    display: none;
}
