body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background: url('../images/bg.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    padding-bottom: 10px;
}

/* Section: Logo */
.logo-section {
    padding: 30px 0 10px;
}
.logo-section img {
    width: 160px;
    height: auto;
}

/* Section: Intro Text */
.text-section {
    background: linear-gradient(180deg, #62ACFF 0%, #0067DA 100%);
    border-radius: 20px;
    margin: 20px auto;
    padding: 25px 20px;
    width: 90%;
    max-width: 310px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-top: 0;
}
.text-section p {
    margin: 12px 0;
    font-size: 15px;
    line-height: 122%;
}
.text-section .highlight {
    color: #00FF94;
    font-weight: bold;
}

/* Section: Question */
.question-section {
    margin-top: 10px;
}
.question-section h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.question-section button {
    display: block;
    width: 90%;
    max-width: 360px;
    margin: 10px auto;
    padding: 15px;
    background: linear-gradient(180deg, #3A86FF, #1960C1);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.question-section button:hover {
    background: #135bb0;
}

/* Section: Footer */
.footer-section {
    margin-top: 40px;
    font-size: 12px;
    color: black;
    background: rgba(255,255,255,.4);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.question-step {
    display: none;
}
.question-step.active {
    display: block;
}
.question-form {
    margin: 10px;
    padding: 20px;
    background: linear-gradient(180deg, #f7f7f7, #cecece);
    border-radius: 25px;
}
.question-form input,
.question-form button {
    display: block;
    width: 90%;
    max-width: 360px;
    margin: 10px auto;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
.question-form button {
    background-color: #3580F1;
    border-radius: 25px;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
