/* Resetting some basic styles for consistency */
body, h1, h2, h3, p, ul, ol, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    background-color: #fcfcfc; /* Background color */
    color: #0b0a09; /* Text color */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 10vh;
    padding-bottom: 10vh;
    margin: 0;
    position: relative;
    overflow-x: hidden; /* Disable horizontal scrolling */
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent for readability */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.question-section {
    border: none;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.question-section label.question {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #0b0a09; /* Text color */
}

.question-section .answer-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.question-section input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: #92a4a8; /* Accent color */
}

.question-section label.answer {
    font-weight: 400;
    margin: 0;
    color: #0b0a09; /* Text color */
}

#step1 select, #step2 select {
    width: 100%;
    padding: 0.65rem;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.25rem;
    background-color: #fcfcfc; /* Background color */
    color: #0b0a09; /* Text color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#step1 select:focus, #step2 select:focus {
    border-color: #92a4a8; /* Accent color */
    box-shadow: 0 0 0 2px rgba(146, 164, 168, 0.2);
    outline: none;
}

button {
    display: block;
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: rgba(56, 117, 21, 1);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #3e9253; /* Secondary color */
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .question-section:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1.25rem;
    }

    .question-section {
        padding: 1.25rem;
    }

    .question-section label.question {
        font-size: 1rem;
    }

    button {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .question-section {
        padding: 1rem;
    }

    .question-section label.question {
        font-size: 0.95rem;
    }

    button {
        padding: 0.65rem;
        font-size: 0.9rem;
    }
}

/* Styles for the background shapes */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Zorgt ervoor dat de vormen achter de content verschijnen */
    overflow: hidden;
}

.background-shape {
    position: absolute;
    border-radius: 50%; /* Maakt de vormen rond */
    background: linear-gradient(to right, #000D3F, #9089fc);
    opacity: 0.3;
    filter: blur(3rem);
    z-index: -1;
}
