body {
  font-family: 'Comic Neue', cursive;
  margin: 0;
  padding: 0;
  background: #fdf6f9;
  color: #333;
}
header, footer {
  background-color: #a3c9a8;
  color: white;
  text-align: center;
  padding: 1rem;
}
nav {
  background: #88ab75;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
main {
  padding: 2rem;
}
.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  padding: 1rem;
  max-width: 300px;
  text-align: center;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea, select {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  background-color: #de94b5;
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 4px;
  cursor: pointer;
}
.footer-text {
  font-size: 0.9rem;
}
