body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #f8f5f0;
  color: #3b2f2f;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1614850523425-8bcf2d1f62d9?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 47, 47, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #f5e6ca;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5em;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h2 {
  color: #6b4b3e;
  margin-bottom: 15px;
}

.about, .services, .contact {
  background: #fffaf3;
  border: 1px solid #e6d8c3;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e9e1d6;
}

.services li:last-child {
  border-bottom: none;
}

.contact a {
  color: #3b2f2f;
  text-decoration: none;
}

.contact a:hover {
  color: #6b4b3e;
}

.footer {
  background-color: #3b2f2f;
  color: #f5e6ca;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}
