body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--gray);
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
    background-image: url('../survey_intro_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
h1, h2, h3 {
    color: var(--primary);
}
.container {
    background-color: var(--accent-200);
    color: var(--primary);
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}
.button-container {
    text-align: center;
    margin-top: 30px;
}
.next-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}
.next-button:hover {
    background-color: var(--secondary-2);
}

/* Help button styling */
#help-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    z-index: 1000;
}

#help-button:hover {
    background-color: var(--secondary-2);
}
