body {
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fa;
}

.hero {
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-one,
.hero-two,
.hero-three,
.hero-four,
.hero-five {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh;
}

.hero-one { background-image: url('../img/banner_1.jpg'); }
.hero-two { background-image: url('../img/banner_2.jpg'); }
.hero-three { background-image: url('../img/banner_3.jpg'); }
.hero-four { background-image: url('../img/banner_4.jpg'); }
.hero-five { background-image: url('../img/banner_5.jpg'); }

@media (max-width: 768px) {
  .hero-one,
  .hero-two,
  .hero-three,
  .hero-four,
  .hero-five {
background-position: center;
    background-size: contain;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.card img {
  height: 220px;
  object-fit: cover;
}

.feature-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer {
  background: #0d6efd;
  color: #fff;
  padding: 2rem 0 1rem 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .card img {
    height: 150px;
  }
}