body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4fb;
}

.hero {
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  color: white;
  padding: 30px 20px;
}

.hero h1 {
  font-size: 2rem;
}

.hero p.lead {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.hero p.mt-3 {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 25px;
}

.hero-buttons .btn {
  font-size: 0.95rem;
  padding: 8px 22px;
  margin: 6px;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: scale(1.05);
}

.section-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px;
  border-radius: 1rem;
  background: white;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.section-bg-1 {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
}

.section-bg-2 {
  background: linear-gradient(to right, #f3e8ff, #ffffff);
}

.section-heading {
  font-size: 1.4rem;
  font-weight: 600;
}

.section-links a {
  text-decoration: none;
  color: #0d6efd;
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .section-card {
    padding: 30px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 991.98px) {
  .section-card {
    font-size: 0.95rem;
  }
  .section-heading {
    font-size: 1.2rem;
  }
  .section-card ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .section-card {
    font-size: 0.88rem;
    padding: 20px;
  }
  .section-heading {
    font-size: 1.1rem;
  }
  .section-card ul li {
    font-size: 0.88rem;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p.lead {
    font-size: 1rem;
  }
}
