.services-header {
  margin-bottom: 32px;
}

.services-header h2 {
  color: #066434;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-header p {
  color: #393D46;
}

/* Service Category Section */
.service-category-section {
  margin-bottom: 60px;
}

.service-category-section:last-child {
  margin-bottom: 0;
}

.service-category-title {
  font-size: 24px;
  font-weight: 700;
  color: #066434;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Service Card Link */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.service-card-link:hover {
  text-decoration: none;
}

.service-card-link:hover .service-card {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


/* Service Details Section */
.service-details {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 40px;
}

.service-details-extra-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.service-details-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.details-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.service-details-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-details-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #066434;
  margin: 0;
  text-align: start;
}

.service-details-text {
  font-size: 20px;
  font-weight: lighter;
  color: #393d46;
  line-height: 1.8;
  margin: 0;
  text-align: start;
}

.service-details-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.service-details-list li {
  font-size: 20px;
  font-weight: lighter;
  color: #393d46;
  line-height: 1.8;
  text-align: start;
  padding-right: 24px;
  position: relative;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .service-details {
    flex-direction: column;
    gap: 40px;
    padding: 40px 40px;
  }

  .service-details-image {
    max-width: 100%;
    width: 100%;
  }

  .service-details-content {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 639px) {
  .services-header {
    margin: 0;
  }
  .service-details, .service-details-extra-content {
    padding: 40px 24px;
    gap: 32px;
  }

  .service-details-subtitle {
    font-size: 20px;
  }

  .service-details-text {
    font-size: 14px;
  }

  .service-details-list li {
    font-size: 14px;
    padding-right: 20px;
  }

  .service-category-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .service-category-title img {
    width: 28px;
    height: 28px;
  }
}