.hero-section {
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 30px;
}

.hero-section .btn-primary {
  background-color: #ff7a59;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
  background-color: #ff5733;
  transform: translateY(-3px);
}

/* Optional floating shapes */
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.hero-bg-shapes .shape-1 { width: 200px; height: 200px; background: #fff; top: -50px; left: -50px; }
.hero-bg-shapes .shape-2 { width: 150px; height: 150px; background: #ffd700; bottom: -50px; right: 20px; }
.hero-bg-shapes .shape-3 { width: 100px; height: 100px; background: #00ffff; top: 150px; right: -30px; }

.features-section {
  background-color: #f7f9fc;
  padding: 80px 0;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
}

.features-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.features-section ul li {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  max-width: 300px;
  font-size: 1.1rem;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .hero-section h1 { font-size: 2.5rem; }
  .hero-section p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .hero-section { padding: 70px 0 50px; }
  .features-section ul { flex-direction: column; gap: 20px; }
  .hero-section h1 { font-size: 2rem; }
  .hero-section p { font-size: 1rem; }
}