* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px 20px;
    border-bottom: 2px solid #eaeaea;
    position: relative;
}

.back-button {
    font-size: 18px;
    text-decoration: none;
    color: #555;
    display: flex;
    align-items: center;
}

.back-button:hover {
    color: #333;
}

.logo-container {
    text-align: center;
    flex-grow: 1;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
    }
    
    .back-button {
        position: absolute;
        left: 10px;
        top: 10px;
    }
    
    .logo-container {
        margin-top: 20px;
    }
}
.catering-form {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.catering-form h1 {
    font-size: 36px;
    color: #333;
}

.catering-form p {
    margin: 10px 0 20px;
    font-size: 18px;
    color: #666;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.images {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.images img {
   
    border-radius: 8px;
}

form {
    width: 45%;
    text-align: left;
}

label {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}

input[type="text"],
input[type="checkbox"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
   
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}
form2 {
    max-width: 200px;
    margin: 0 auto;
}

label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input:focus, select:focus {
    border-color: #555;
}

.form-group {
    margin-bottom: 15px;
}