body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff7f0;
  text-align: center;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #ff7866;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
  font-size: 2.8rem;
  color: #fff;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.header-text p {
  color: #fff3f3;
  margin: 8px 0 0;
  font-size: 1rem;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.card h2 {
  margin: 15px 0 5px;
}

.card p {
  margin: 5px 0 15px;
  font-weight: bold;
}

.card button {
  background-color: #ff7866;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.card button:hover {
  background-color: #e35d4f;
}

footer {
  background-color: #ffe2d6;
  padding: 20px 0;
  color: #444;
  font-size: 14px;
}
