* {
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/img/hero.jpg") center/cover no-repeat;
  height: 100vh;
  color: white;
}

.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card .price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-card.featured {
  background-color: #0d6efd;
  color: white;
  border: none;
}

footer a:hover {
  text-decoration: none;
}

section h2 {
  font-weight: 600;
  color: #0d6efd;
}
