.eq-quiz-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.eq-progress {
    width: 100%;
    height: 8px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 40px;
}

.eq-progress-bar {
    width: 0;
    height: 100%;
    background: #111;
    transition: 0.3s ease;
}

.eq-step {
    display: none;
}

.eq-step.active {
    display: block;
}

.eq-question {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.eq-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.eq-options label {
    cursor: pointer;
}

.eq-options input {
    display: none;
}

.eq-options span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: 0.2s ease;
}

.eq-options input:checked + span {
    background: #111;
    color: #fff;
    border-color: #111;
}

.eq-buttons {
    display: flex;
    gap: 12px;
}

.eq-buttons button,
#eq-user-details button,
.eq-cta-btn {
    border: none;
    background: #111;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

#eq-user-details input {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.eq-result-box {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 16px;
}

.eq-result-box h2 {
    margin-bottom: 10px;
}

.eq-result-box h3 {
    margin-bottom: 20px;
}

.eq-cta-btn {
    margin-top: 20px;
}

@media(max-width: 767px) {

    .eq-question {
        font-size: 20px;
    }

    .eq-options {
        gap: 8px;
    }

    .eq-options span {
        width: 44px;
        height: 44px;
    }
}