.suf-wrapper-fa6f88da {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    font-family: "Varsity Team", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.suf-section {
    border-bottom: 1px solid #f0f0f0;
    padding: 30px;
}

.suf-section:last-of-type {
    border-bottom: none;
}

.suf-section-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.suf-step-badge {
    background-color: #1a3673;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.suf-section-title-wrap {
    display: flex;
    flex-direction: column;
}

.suf-section-title {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.suf-section-title i {
    color: #1a3673;
}

.suf-section-desc {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.suf-section-body {
    padding-left: 48px;
}

.suf-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.suf-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.suf-wrapper-fa6f88da label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.suf-wrapper-fa6f88da label .required {
    color: #ef4444;
}

.suf-wrapper-fa6f88da input[type="text"],
.suf-wrapper-fa6f88da input[type="email"],
.suf-wrapper-fa6f88da input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #334155;
    transition: all 0.2s ease;
    background-color: #ffffff;
    font-family: inherit;
}

.suf-wrapper-fa6f88da input::placeholder {
    color: #94a3b8;
}

.suf-wrapper-fa6f88da input:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.5);
}

.suf-radio-container {
    margin-top: 24px;
}

.suf-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.suf-radio-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.suf-radio-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.suf-radio-item input[type="radio"] {
    margin: 0;
    margin-right: 12px;
    cursor: pointer;
}

.suf-radio-item .radio-label {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-transform: none;
    letter-spacing: normal;
}

.suf-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    background-color: #ffffff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.suf-submit-btn {
    background-color: #e2e8f0;
    color: #64748b;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    max-width: 600px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    font-family: inherit;
}

.suf-submit-btn:hover {
    background-color: #cbd5e1;
    color: #475569;
}

.suf-terms {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.suf-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.suf-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
    .suf-form-row {
        flex-direction: column;
        gap: 16px;
    }
    .suf-section-body {
        padding-left: 0;
        margin-top: 20px;
    }
    .suf-radio-group {
        grid-template-columns: 1fr;
    }
}
