.ayurveda-booking-container {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.ayurveda-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end; /* This aligns the bottom of the button with the bottom of the inputs */
}
.ayurveda-booking-form .form-group {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}
.ayurveda-booking-form label {
    margin-bottom: 8px;
    font-weight: 500;
}
.ayurveda-booking-form input,
.ayurveda-booking-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 42px; /* Fixed height for inputs */
    box-sizing: border-box;
}
.ayurveda-booking-btn {
    flex: 1 1 200px;
    padding: 0 12px;
    background: #4a5568;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    height: 42px; /* Match height of inputs */
    line-height: 42px; /* Center text vertically */
}
.ayurveda-booking-btn:hover {
    background: #2d3748;
}