body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}
.hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.cta-link {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.cta-link:hover {
  background-color: #eee;
}

.testimonial {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-inner {
  max-width: 600px;
  margin: 0 auto;
}
.testimonial img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.testimonial footer {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-link {
    padding: 10px 18px;
  }
}
