/* Base styles */
body {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #222;
}

/* Top navigation */
.top-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    background-color: #C04000;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, outline 0.2s ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
    background-color: #A84300;
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

/* Header */
.header {
    text-align: center;
    background-color: #C04000;
    color: white;
    padding: 20px 0;
}

/* Content section */
.content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Questions */
#questions-container {
    margin-bottom: 30px;
}

.question {
    margin-bottom: 20px;
}

.question p {
    font-weight: bold;
    margin-bottom: 10px;
}

.options {
    list-style: none;
    padding: 0;
}

.options li {
    margin-bottom: 10px;
}

.options label {
    cursor: pointer;
}

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

/* Buttons */
.submit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #C04000;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s, outline 0.2s ease-in-out;
}

.submit-button:hover,
.submit-button:focus {
    background-color: #A84300;
    outline: 2px solid #0057B7;
    outline-offset: 2px;
}

/* Results */
#result {
    margin-top: 20px;
    padding: 15px;
    background-color: #e6f7ff;
    border-left: 5px solid #0057B7;
    border-radius: 4px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .content {
        padding: 15px;
    }
}
