.services-main {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.services-container {
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 1280px;
}

.services-hero {
  text-align: center;
  padding: 4rem 0;
  background-color: #f8f8f8;
  border-radius: 1rem;
  margin-bottom: 4rem;
}

.services-heading {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.services-subheading {
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
  color: #4a4a4a;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: #18181b;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #18181b;
}

.process-section {
  margin: 6rem 0;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #18181b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 500;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #18181b;
  color: white;
  border-radius: 1rem;
  margin-top: 4rem;
}

.cta-button {
  display: inline-flex;
  padding: 1.25rem 2.25rem;
  background-color: white;
  color: #18181b;
  border: 1px solid white;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1.25rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: transparent;
  color: white;
}

.testimonials-section {
  margin: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .services-heading {
    font-size: 2.5rem;
  }

  .service-categories {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}
