/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F2E4C4;
    color: #333;
}

.container {
    max-width: 1200px; /* Adjust width as needed */
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Full width container */
    box-sizing: border-box;
}

h1 {
    text-align: center; /* Center the heading horizontally */
    font-size: 2.5em; /* Larger heading for better visibility */
    margin-bottom: 20px; /* Space below the heading */
    color: #976F1B;
}

h2 {
    font-size: 1.75em; /* Slightly larger subheading */
    margin-bottom: 5px;
	margin-top:30px;
	color: #046C7A;
}
h3 {
    font-size: 1.1em; /* Slightly larger subheading */
    margin-bottom: 30px;
	margin-top:5px;
	color: #05899A;
}

p{
	font-size:15px;
}

#presentation-olivier{
	padding:40px;
	margin-bottom: 40px;
}

#presentation-olivier img{
	border-radius: 15px;
	margin-right:30px;
	margin-bottom:20px;
}

#results{
	padding:20px;
}


/* Form Styles */
form {
    margin: 10px 30px;
    padding: 0;

}
.options{
	margin-left:10px;
}

.question {
    margin-bottom: 20px; /* Increased margin for better spacing */
}

.question label {
    display: block;
    margin-bottom: 10px; /* Increased margin for better readability */
    font-weight: bold;
	color:#02424A
}

.question input[type="radio"] {
    margin-right: 10px;
}

.question .missing {
    border: 2px solid #f44336;
    padding: 10px;
    border-radius: 4px;
    background-color: #ffe3e3;
}

/* Button Container */
.button-container {
    display: flex;
    gap: 10px; /* Space between buttons */
    justify-content: center; /* Center the buttons horizontally */
    margin-top: 20px; /* Space above buttons */
}

button {
    background-color: #976F1B;
    color: white;
    border: none;
    padding: 12px 24px; /* Increased padding for better appearance */
    text-align: center;
    text-decoration: none;
    font-size: 18px; /* Larger font size for better readability */
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    flex: 1; /* Make buttons take up available space */
}

button:hover {
    background-color: #bc9646;
}

/* Redirect and Home Buttons */
button.redirect, button.home {
    background-color: #976F1B;
}

button.redirect:hover, button.home:hover {
    background-color: #1e88e5;
}

button.home, button.home2 {
    background-color: #02424A; /* Different color for home button */
}

button.home:hover, button.home2:hover {
    background-color: #05899A;
}

button.home2{
	margin-top:20px;
	margin-bottom:20px;
}
