.order-form-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    text-align: center;
    color: #007BFF;
}

p {
    font-size: 1.2em;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.order-form {
    display: flex;
    flex-direction: column;
}

.order-form label {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #333;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="number"],
.order-form input[type="date"],
.order-form select,
.order-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    background-color: #f9f9f9;
}

.order-form textarea {
    resize: vertical;
    height: 150px;
}

button {
    padding: 15px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 15px;
    }
}
