@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

.section-header {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, white, gray, white);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}
.services-section {
  padding: 20px 0;
  background-color: rgb(84 95 152);
  color: white;
}

.service-item {
  display: flex;
  align-items: center;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  padding: 0 20px;
  width: 100%;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 1;
  padding: 0 10px !important;
  background-color: white;
  color: black;
  padding: 8px;
  border-radius: 4px;
  min-height: 100%;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.service-content p {
  font-size: 1rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
