.banner {
  background: url("/Pictures/ServiceBanner.webp") no-repeat center 40% / cover;
}

/* .hero {
    height: 40vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
} */

.services-detail {
  padding: 80px 40px;
  /* background-color: #f5f5f5; */
}

.services-detail-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.service-detail-card.reverse {
  flex-direction: row-reverse;
}

.service-detail-card img {
  width: 45%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.service-detail-info {
  flex: 1;
}

.service-detail-info h2 {
  font-size: 1.8rem;
  color: rgb(20, 20, 20);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.service-detail-info h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: orange;
}

.service-detail-info p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  margin-top: 16px;
}

.service-detail-info ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-info ul li {
  color: rgb(20, 20, 20);
  padding-left: 20px;
  position: relative;
}

.service-detail-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: orange;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .service-detail-card,
  .service-detail-card.reverse {
    flex-direction: column;
  }

  .service-detail-card img {
    width: 100%;
    height: 220px;
  }
}
