/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: #2c3e50;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

header .logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
  margin: 10px 0;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Form Styles */
main {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.order-form, .payment-form {
  background-color: white;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

label {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}

select, input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

select:focus, input:focus, textarea:focus {
  border-color: #27ae60;
  outline: none;
}

button {
  background-color: #27ae60;
  color: white;
  padding: 12px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2ecc71;
}

/* Footer Styles */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
}
