.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  min-height: calc(100vh - 98px); /* Ajusta según la altura de tu header */
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}
