body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background: #212121;
    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 {
    margin: auto;
    background: linear-gradient(to bottom, #212121, #181818, #293E27);
    border-radius: 25px;
    padding: 15px 10px;
    max-width: 400px;
    margin-top: 0;
    color: white;
    padding-bottom: 40px;
}
.text-section p {
    margin: 12px 0;
    font-size: 18px;
    font-weight: 700;
}

.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: white;
    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, #31BB5B, #3E613B);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.question-section button:hover {
    background: green;
}

/* 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 {
    max-width: 440px;
    margin: 10px auto;
    padding: 20px;
    border-radius: 25px;
    color: white;
    background: linear-gradient(to bottom, #00000000, #31BB5B50);
    box-shadow: 0 4px 15px #00000080;
}

.question-form h2 {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}
.question-form p {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    line-height: 18px;
    max-width: 80%;
    margin: 10px auto;
}
.question-form input,
.question-form button {
    font-size: 15px;
    display: block;
    width: 90%;
    max-width: 360px;
    margin: 10px auto;
    padding: 12px;
    border-radius: 20px;
    border: 2px solid green;

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

.transparent-bg {
    background: transparent !important;
}
