/* Services Page Styles */
.services-section {
  padding: 6rem 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

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

.service-icon {
  width: 120px;
  height: 120px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.service-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-icon svg {
    width: 50px;
    height: 50px;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .service-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 4rem 0;
  }

  .services-list {
    gap: 2rem;
  }

  .service-row {
    padding: 1.5rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
  }

  .service-icon svg {
    width: 40px;
    height: 40px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}
