/* Style the form container */
.booking-form {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style the form headings */
.booking-form h2, .booking-form h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Style the input fields */
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Style the submit button */
.booking-form button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

.booking-form button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .booking-form {
        padding: 15px;
    }

    .booking-form input, .booking-form select, .booking-form textarea {
        font-size: 0.9rem;
    }

    .booking-form button {
        font-size: 1rem;
    }
}