* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.heading {
    color: #ffffff;
    font-size: 3em;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
}

.container {
    background-color: #F9A620;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

form {
    display: flex;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 48%;
    margin-right: 2%;
}

.form-group.full-width {
    width: 100%;
}

.form-group { margin-bottom: 15px; }
        .full-width { width: 100%; }
        #reservationDetails {
            display: none;
            margin-top: 20px;
            padding: 10px;
            border: 1px solid #ccc;
            background-color: #000000;
        }

label {
    font-family: montserrat;
    margin-bottom: 5px;
    font-weight: 500;
    color: #000000;
}

input, textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="date"], input[type="time"] {
    font-family: montserrat;
    font-weight: 500;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    font-family: Montserrat;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: #000000;
    color: #fff;
    transition: background-color 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    display: block;
    margin: 0 auto;
}

button:hover {
    background-color: #218838;
}

/* Ensure the last form group in the row doesn't have extra margin */
.form-group:nth-child(2n) {
    margin-right: 0;
}

footer {
    margin-top: 110px;
}