.services-section {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.services-section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #0d1b2a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-info {
  padding: 20px;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.service-info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-info ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.service-info ul li {
  margin-bottom: 8px;
  color: #0d1b2a;
  font-weight: 500;
}

.service-btn {
  display: inline-block;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}