.sqm-quiz-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sqm-quiz-header {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.sqm-quiz-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.sqm-quiz-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.sqm-question {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sqm-question-text {
    font-size: 20px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.sqm-question-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.sqm-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sqm-option {
    padding: 18px 25px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.sqm-option:hover {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
    transform: translateX(5px);
}

.sqm-result {
    padding: 30px;
    background: #f0f8ff;
    border-radius: 8px;
    text-align: left;
}

.sqm-result h3 {
    font-size: 24px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.sqm-result-content {
    margin: 30px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.sqm-result-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.sqm-restart {
    padding: 15px 40px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sqm-restart:hover {
    background: #357abd;
}

@media (max-width: 768px) {
    .sqm-quiz-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .sqm-quiz-title {
        font-size: 22px;
    }
    
    .sqm-question-content {
        font-size: 16px;
    }
    
    .sqm-option {
        padding: 15px 20px;
        font-size: 15px;
    }
}
