.service-details-section {
  padding: 80px 0;
  width: 100%;
  background-image: url("/assets/images/bg2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.service-details-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.service-details-title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #004aad;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-details-container {
  width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.service-item {
  background: #f9fafb;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-item-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #333;
}

.service-item-desc {
  line-height: 1.6;
  color: #555;
  font-size: 0.95rem;
}