/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #233b6c;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Section */
.header {
    text-align: center;
    padding: 20px 0;
    flex-shrink: 0;
}

.header .logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.header .title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

/* Main Content Section */
.question-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Options Container */
#options-container {
    display: flex;
    flex-direction: column; /* Arrange options vertically */
    align-items: center;
    gap: 20px;
}

.option-wrapper {
    width: 100%;
    max-width: 400px;
    height: 150px;
    border: 2px solid #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2a4b87;
    text-align: center;
    transition: background 0.3s ease, border 0.3s ease;
    position: relative;
}

.option-wrapper:hover {
    background: #1f3b6c;
    cursor: pointer;
}

/* Highlight selected option */
.option-wrapper.selected {
    border: 4px solid #ffd700; /* Gold border for selected option */
    background: #1f3b6c; /* Slightly darker background */
}

.option-wrapper input {
    display: none;
}

.option-wrapper label {
    font-size: 1.2rem;
    color: #fff;
    pointer-events: none;
}

/* Button */
.btn {
    margin-top: 30px;
    padding: 10px 30px;
    background: #fff;
    color: #233b6c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #d4d4d4;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 20px 0;
    background: #1f3b6c;
    flex-shrink: 0;
}

.footer p {
    font-size: 0.9rem;
    color: #ccc;
}

