body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f0;
  color: #333;
}

header {
  background: #b71c1c;
  color: white;
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: url('images/catering.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.services {
  padding: 40px 20px;
  text-align: center;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.service {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 250px;
}

.about, .contact {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea, button {
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
}

button {
  background: #b71c1c;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #8e0000;
}

footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 10px;
}