body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fffaf7;
  scroll-behavior: smooth;
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(89, 60, 80, 0.9);
  padding: 10px 0;
  text-align: center;
  z-index: 1000;
}
nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
.hero-image {
  background-image: url('image1.webp');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.hero-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
}
.hero-text p {
  font-size: 1.2em;
}
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}
.features h2, .testimonials h2, .blog h2 {
  color: #b85c8d;
}
.feature-image {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
}
.testimonial, .blog-post {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.contact {
  background-color: #f3e7e9;
  padding: 40px 20px;
  text-align: center;
}
.contact input, .contact textarea {
  width: 90%;
  max-width: 500px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
}
.contact button {
  background-color: #b85c8d;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
}
footer {
  background-color: #593959;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
