/* Reset margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0; /* Added from the second CSS */
}

.container, .quiz-container {
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.person-section {
    margin-bottom: 40px; /* Or any other value you prefer for spacing */
}

.about-us-section {
    margin-bottom: 20; /* Adjust this value for the desired space */
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.about-section {
    margin-bottom: 20px; /* Space before the input fields start */
    padding-bottom: 20px; /* Padding for separation */
    border-bottom: 1px solid #ddd; /* Separation line */
    font-style: italic; /* Optional styling for the about section */
}

.info-section {
    margin-bottom: 40px; /* Adjust this value for the desired space */
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

label {
    font-weight: bold; /* This will make all labels bold */
    display: block;
    margin-bottom: 10px; /* Space between label and input */
}

input[type="text"], select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 16px;
    margin-bottom: 15px; /* Space after each input */
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.person-section {
    margin-bottom: 40px;
}

.extra-space {
    margin-bottom: 60px; /* Adjust this value to get the desired space */
}

/* Additional CSS to ensure that the last element before the next person-section also has some margin */
.input-group:last-child {
    margin-bottom: 40px; /* Adjust this value as needed for more space */
}

.submit-btn, .submit-button {
    background-color: #007bff; /* Blue color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 30px;
}

.submit-btn:hover, .submit-button:hover {
    background-color: #0069d9; /* Slightly darker blue for hover effect */
}

.quiz-form, .question-block {
    margin: 20px 0;
}

.question-block {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
}

.question-block label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.question-block input[type="radio"] {
    margin-right: 5px; /* Space after each radio button */
}

/* Adjusting radio button and label alignment */
.question-block input[type="radio"] + label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px; /* Space between radio button-label pairs */
}

.question-block .answer-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px; /* Adjust space between radio buttons and labels */
}

.radio-button {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.radio-button input[type="radio"] {
    margin-right: 5px;
}

.radio-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allows radio buttons to wrap in smaller screens */
    gap: 5px 10px; /* Space between each radio button and its label */
}

.radio-group input[type="radio"] {
    margin-right: 5px; /* Space after each radio button */
}

.radio-group label {
    margin-right: 15px; /* Space after each label */
}

input[type="radio"] {
    margin-right: 5px;
}

/* Styles from the second CSS file */

header {
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    z-index: 10;
    padding: 1em 4em;
    width: 100%;
    background: #FFFFFF;
}

header a.logo {
    font-size: 2em;
    color: #3F51B5;
    text-decoration: none;
}

/* Add the rest of the styles from the second CSS file here */
