body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fffaf2;
  color: #5c3300;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #843f00;
}

.logo {
  width: 100px;
  display: block;
  margin: 20px auto 0;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #fff1cc, #ffe5b4);
}

.hero-img {
  max-width: 600px;
  width: 90%;
  border-radius: 20px;
  margin-top: 20px;
}

.button-group {
  text-align: center;
  margin: 20px;
}

.primary, .secondary, .legacy-btn {
  font-size: 16px;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.primary {
  background: linear-gradient(to right, #fbb040, #f15a24);
  color: white;
}

.secondary {
  background: white;
  border: 2px solid #fbb040;
  color: #f15a24;
}

.features {
  padding: 40px 20px;
  text-align: center;
}

.feature-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature {
  background: #fff3e0;
  padding: 20px;
  margin: 10px;
  width: 250px;
  border-radius: 12px;
}

.story {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  align-items: center;
  background: #fffaec;
}

.story-image img {
  max-width: 400px;
  border-radius: 20px;
  width: 100%;
}

.story-text {
  flex: 1;
  padding: 20px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.legacy-btn {
  background: linear-gradient(to right, #fbb040, #f15a24);
  color: white;
  border: none;
  margin-top: 20px;
}

.testimonials {
  padding: 40px 20px;
  background: #fffdf5;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  width: 300px;
  margin: 20px;
  font-style: italic;
}

.cta {
 
