.what-we-do {
  padding: 90px 20px;
  background: #f8f9fb;
}

.what-container {
  max-width: 1350px;
  margin: auto;
  text-align: center;
}

.what-container h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.what-description {
  max-width: 950px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.what-description span {
  color: #2f7fda;
  font-weight: 700;
}

.service-heading {
  font-size: 34px;
  margin-bottom: 40px;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.service-card i {
  font-size: 34px;
  color: #2f7fda;
  margin-bottom: 18px;
}

.service-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-container h2 {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .what-container h2 {
    font-size: 30px;
  }

  .service-heading {
    font-size: 26px;
  }

  .what-description {
    font-size: 15px;
  }

  .service-card h4 {
    font-size: 19px;
  }
}
