body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fdfcf9;
  color: #5a4b3b;
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  margin: 0.5em 0;
}

header.hero {
  background: #eae4dc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2em;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3em;
  color: #4d3c2d;
}

.hero-text p {
  font-size: 1.2em;
  margin: 0.5em 0 1em;
}

.hero-img {
  width: 300px;
  border-radius: 12px;
}

.btn {
  background: #9c7b62;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.section {
  padding: 3em 1em;
  text-align: center;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 250px;
  padding: 1em;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

form {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

form input, form textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #88a17f;
  color: white;
  padding: 0.75em;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 1em;
  background: #f0eee8;
  color: #7b6654;
}