#carassure-payment-form-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    background: #fff;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.step {
    color: #999;
    font-weight: bold;
}

.step.active {
    color: #007cba;
    border-bottom: 2px solid #007cba;
    margin-bottom: -12px;
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
}

.package-option {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.package-option:hover {
    background: #f9f9f9;
}

.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.field input, .field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.next-step, #submit-booking {
    background: #007cba;
    color: #fff;
}

.prev-step {
    background: #eee;
    color: #333;
    margin-right: 10px;
}

#booking-summary {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.payment-options {
    margin-bottom: 20px;
}
