/* Services Page Styles */
.services-intro {
  padding-bottom: 0;
}

.service-detail {
  padding: var(--spacing-xxxl) 0;
}

.service-content {
  display: flex;
  gap: var(--spacing-xxl);
  align-items: center;
  background-color: var(--white);
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
  display: block;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
}

.service-text p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.service-text ul {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-lg);
}

.service-text ul li {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  position: relative;
  list-style-type: disc;
}

.service-text .btn {
  margin-top: var(--spacing-lg);
}

.alt-bg {
  background-color: var(--gray-100);
}

@media (max-width: 992px) {
  .service-content,
  .service-content.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-text {
    width: 100%;
  }

  .service-text {
    margin-top: var(--spacing-xl);
  }

  .service-content.reverse .service-text {
    margin-top: 0;
    margin-bottom: var(--spacing-xl);
  }
}

/* Updated color palette */
:root {
  --primary-color: #3c4955;
  --secondary-color: #5a6d7f;
  --hover-color: #4a5c6b;
  --white: #ffffff;
  --gray-700: #6a7b8c;
}