.hero-section {
  background-image: url("https://images.unsplash.com/photo-1604762524889-3e2fcc145683?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1471&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0000005b;
}

.hero-content {
  position: relative;
  z-index: 1;
}
.section-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #27ae60;
}
.feature-box {
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}
.feature-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.feature-text {
  color: #666;
  font-size: 0.9rem;
}
.cta-section {
  background-color: #4a5568;
  color: white;
  padding: 60px 0;
  border-radius: 20px;
}
.cta-btn {
  background-color: white;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  margin-right: 10px;
  margin-top: 15px;
}
.cta-btn:hover {
  background-color: #388638;
  color: white;
}
.cta-btn i {
  margin-left: 5px;
}
.bullet-list {
  padding-left: 20px;
}
.bullet-list li {
  margin-bottom: 8px;
  position: relative;
  list-style-type: none;
  padding-left: 20px;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27ae60;
}
.section-subtitle {
  font-weight: 600;
  margin: 30px 0 15px 0;
  color: #2c3e50;
}

H1 {
  font-size: 60px;
  letter-spacing: -1.5px;
  font-weight: 700;
  font-family: Playfair Display;
}
