

.quiz-wrapper {
    max-width: 550px; 
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    font-family: 'Ubuntu', sans-serif;
}

.quiz-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f2f5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.quiz-card h2 {
    color: var(--primary, #062635);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.answer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.answer-header span { color: #666; }
.answer-header strong { color: var(--primary, #062635); font-weight: 700; }
.answer-header i { color: var(--primary, #062635); }

.quiz-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.quiz-cta {
    background: var(--primary, #062635);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(6, 38, 53, 0.15);
}

.cta-text {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.cta-btn {
    background: #ffffff;
    color: var(--primary, #062635);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    flex-shrink: 0; 
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
    transform: translateX(4px); 
    background: #f0f2f5;
}

@media (max-width: 600px) {
    .quiz-wrapper { margin: 30px auto; gap: 15px; }
    .quiz-card { padding: 25px 20px; }
    .quiz-card h2 { font-size: 1.2rem; }
    
    .quiz-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .cta-btn {
        width: 100%;
        height: 50px;
    }
    
    .cta-btn:hover { transform: translateY(-2px); }
}




.quiz-logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.quiz-logo-container .brand-text {
    font-size: 2rem;
    font-weight: 700;
}

.quiz-logo-container a {
    text-decoration: none;
    color: var(--primary, #062635);
    transition: color 0.2s ease;
}


.quiz-logo-container i {
    color: var(--primary, #062635);
}

