.swan-quiz {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    box-sizing: border-box;
}

.swan-quiz *,
.swan-quiz *:before,
.swan-quiz *:after {
    box-sizing: border-box;
}

.swan-quiz .progress-wrap {
    margin-bottom: 30px;
}

.swan-quiz .progress-bar {
    height: 8px;
    background: #e5e5e5;
    border-radius: 50px;
    overflow: hidden;
}

.swan-quiz .progress-fill {
    height: 100%;
    width: 0;
    background: #0c3f8f;
    transition: .4s;
}

.swan-quiz .progress-text {
    margin-top: 10px;
    color: #666;
}

.swan-quiz .quiz-card h2 {
    color: #0c3f8f;
    margin-bottom: 15px;
}

.swan-quiz .quiz-card p {
    line-height: 1.7;
    color: #555;
}

.swan-quiz .answers {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.swan-quiz .answers button {
    flex: 1;
    padding: 16px;
    border: none;
    background: #0c3f8f;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}

.swan-quiz .answers button:hover,
.swan-quiz .answers button:focus {
    opacity: .9;
}

.swan-quiz .result {
    text-align: center;
}

.swan-quiz .score-number {
    font-size: 60px;
    font-weight: bold;
    color: #0c3f8f;
    margin: 20px 0;
}

.swan-quiz .score-message {
    font-size: 18px;
    margin-bottom: 30px;
}

.swan-quiz .cta-btn {
    display: inline-block;
    padding: 18px 25px;
    background: #c9a45c;
    color: white;
    font-size: 15px;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
}
.swan-quiz .cta-btn:hover {
    background-color: var( --e-global-color-astglobalcolor0 );
}
@media (max-width: 767px) {
    .swan-quiz {
        padding: 25px;
    }

    .swan-quiz .answers {
        flex-direction: column;
    }

    .swan-quiz .cta-btn {
        font-size: 14px;
        padding: 10px 10px 10px 10px;
    }
}