body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
}

header {
  background-color: #d49d73;
  color: white;
  padding: 8rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  align-items:center;
}

main {
  padding: 2rem;
}

.overview, .features, .tips, .cta {
  background-color: #f5f5f5;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.features img {
  margin-top: 1rem;
  max-width: 100%;
  border-radius: 10px;
}

.gallery {
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.tips ol {
  padding-left: 1.5rem;
  font-size: 1.1rem;
}

.cta {
  text-align: center;
}

.contact-button {
  background-color: #6f523f;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
}

.contact-button:hover {
  background-color: #896b51;
}


