.services-section {
  width: 100%;
  text-align: center;
  background-color: #F9FAFB;
}

.services-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.services-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #3366CC;
  margin-bottom: 10px;
}

.services-section .subheading {
  font-size: 18px;
  color: #4A6078;
  margin-bottom: 40px;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: stretch;
  align-items: stretch;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e45;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: #4A6078;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-section h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px;
  }
}
