.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-badges span {
  color: var(--danger);
}

.hero-badges {
  padding: 18px;
}

.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; }
}

/* Base Section */
.why-section {
  padding: 10px 20px;
  background-color: #ffffff;
}

.why-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.why-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #222;
}

/* Paragraph */
.why-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* List */
.why-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #333;
}

/* Custom bullet */
.why-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 16px;
}

/* -------------------- */
/* 📱 Tablet (<= 768px) */
/* -------------------- */
@media (max-width: 768px) {
  .why-section {
    padding: 40px 16px;
  }

  .why-section h2 {
    font-size: 26px;
  }

  .why-section p {
    font-size: 16px;
  }

  .why-section ul li {
    font-size: 15px;
  }
}

/* -------------------- */
/* 📱 Mobile (<= 480px) */
/* -------------------- */
@media (max-width: 480px) {
  .why-section {
    padding: 30px 14px;
  }

  .why-section h2 {
    font-size: 22px;
  }

  .why-section p {
    font-size: 15px;
  }

  .why-section ul li {
    font-size: 14px;
  }
}