.factfinding-page {
    padding: 40px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.progress-wrapper {
    margin: 20px 0;
}

.progress {
    height: 10px;
    border-radius: 5px;
}

.section-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

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

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 10px;
}

.form-check {
    margin-bottom: 10px;
}

.other-input {
    margin-left: 25px;
    width: calc(100% - 25px);
}

.form-actions {
    text-align: center;
}

.btn-primary {
    padding: 10px 30px;
    font-size: 1.1rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .section-wrapper {
        padding: 20px;
    }

    .other-input {
        margin-left: 0;
        width: 100%;
    }
} 