.services-section {
  padding: 40px;
  background-color: var(--background-color);
}

.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  margin-bottom: 60px;
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.service-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  flex: 1;
  min-height: 300px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-description {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.service-cta {
  align-self: flex-start;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-section {
    padding: 20px;
  }

  .service-card,
  .service-card:nth-child(even) {
    flex-direction: column;
  }

  .service-content {
    padding: 30px 20px;
  }

  .services-intro h2 {
    font-size: 2rem;
  }
}
