.services-section {
  padding: 60px 20px;
  background: #f9faff;
  font-family: 'Segoe UI', sans-serif;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-size: 2.4rem;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.services-header p {
  color: #555;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}
