#survey-wrap {
    max-width: 760px;
    margin: 40px auto;
    padding: 0 20px;
}

.survey-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.survey-question {
    margin-bottom: 25px;
}

.survey-question i {
    color: #000000;
    font-size: 0.75em;
    font-style: italic;
}

.survey-question label {
    color: #000000;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.slider-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.survey-slider {
    flex: 1;
    accent-color: #333;
    cursor: pointer;
}

.slider-value {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

#survey-submit {
    margin-top: 20px;
    padding: 14px 40px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

#survey-submit:hover {
    background: #555;
}

#survey-result {
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
}

#survey-score-result {
    color: #000000;
}

.survey-question .text {
    color: #000000;
}

