.gds-step-form-wrap {
    max-width: 820px;
    margin: 40px auto;
}

.gds-cs-step-form {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 28px;
    box-sizing: border-box;
}

.gds-progress-wrap {
    margin-bottom: 24px;
}

.gds-section-banner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.gds-section-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    color: #c46b2b;
}

.gds-section-kicker {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.gds-section-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.gds-section-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.gds-progress-bar {
    width: 100%;
    height: 8px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.gds-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    max-width: 100%;
    background: #c46b2b;
    border-radius: 999px;
    transition: width 0.25s ease;
}
.gds-progress-bar {
    outline: 1px solid red;
}

.gds-progress-fill {
    outline: 1px solid blue;
}

.gds-question-panel {
    min-height: 240px;
}

.gds-question-title {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 22px;
    font-weight: 700;
    color: #111827;
}

.gds-answer-group {
    display: block;
}

.gds-option-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    cursor: pointer;
}

.gds-option-card input {
    transform: scale(1.08);
}

.gds-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

textarea.gds-input {
    resize: vertical;
}

.gds-step-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px dashed #ddd;
}

.gds-btn {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
}

.gds-btn-primary {
    background: #fff;
    border-color: #bbb;
}

.gds-btn-secondary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.gds-cs-results {
    margin-top: 24px;
}

.gds-confirmation-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.gds-confirmation-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
}

.gds-confirmation-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #c96f2d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.gds-confirmation-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
}

.gds-confirmation-card p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.gds-error {
    padding: 16px;
    background: #ffe6e6;
    color: #a00;
    border: 1px solid #f1b1b1;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .gds-cs-step-form {
        padding: 20px;
    }

    .gds-section-title,
    .gds-confirmation-card h3 {
        font-size: 24px;
    }

    .gds-question-title {
        font-size: 20px;
    }

    .gds-option-card input[type="radio"],
.gds-option-card input[type="checkbox"] {
    accent-color: #c46b2b;
}

}