#rfs-wizard {
    max-width: 700px;
    margin: 20px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rfs-group {
    margin-bottom: 15px;
}

.rfs-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.rfs-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rfs-card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
}

.rfs-card input {
    margin: 0;
}

.rfs-card span {
    font-size: 14px;
}

.rfs-card-option {
    background: #f3f6fb;
}

.rfs-btn {
    background: #005BBB;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.rfs-btn:hover {
    background: #004499;
}

#rfs-price-details ul {
    list-style: disc;
    padding-left: 20px;
}

#rfs-price-details strong {
    font-size: 16px;
}

#rfs-step1-message,
#rfs-confirm-message {
    margin-top: 10px;
    font-size: 14px;
}

#rfs-step2 p {
    margin: 4px 0;
}

@media (max-width: 600px) {
    .rfs-cards {
        flex-direction: column;
    }
}