.services-header h2 {
  color: #c09c3a;
}

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

.services-header-home {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 3;
}

.services-header-home h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.services-header-home p {
  font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
}


/* 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;
}

.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: #c09c3a;
  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) {
  .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;
  }
}