/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

h1 {
  margin: 0;
}

/* Section Styles */
.section {
  padding: 40px 20px;
  text-align: center;
}

.food {
  background-color: #fce4d6; /* Light peach color */
}

.dessert {
  background-color: #fff0f5; /* Light pink color */
}

/* Content Styles */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Responsive Design */
@media (min-width: 600px) {
  .content {
    flex-direction: row;
    gap: 20px;
  }

  .content p {
    max-width: 400px;
    text-align: left;
  }

  .image {
    margin-bottom: 0;
  }
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  width: 100%;
  bottom: 0;
}
