body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background: white;
    background-size: cover;
    color: black;
    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 {
    margin: auto;
    background: white;
    padding: 15px 10px;
    max-width: 400px;
    margin-top: 0;
    color: black;
}
.text-section p {
    margin: 12px 0;
    font-size: 20px;
    font-weight: 800;
}

.text-section .line {
    background: linear-gradient(#ffffff 0%, #ff4431 50%, #ffffff 100%);
    width: 100%;
    height: 3px;
}

/* Section: Question */
.question-section {
    margin-top: 10px;
}
.question-section h2 {
    color: black;
    font-size: 26px;
    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, #FF4431, #E90000);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.question-section button:hover {
    background: red;
}

/* 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;
    border-radius: 25px;
}
.question-form input,
.question-form button {
    display: block;
    width: 90%;
    max-width: 360px;
    margin: 10px auto;
    padding: 12px;
    border-radius: 20px;
    font-size: 16px;
    border: 2px solid #FF4431;

}
.question-form button {
    background-color: #FF4431;
    border-radius: 12px;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
