/* ===== Sekce Naše služby ===== */
#services {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9fafc;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #0a2f5c;
}

/* Grid */
#services .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

/* Karty */
#services .card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Ikony */
#services .card i {
  font-size: 3rem;
  color: #0a2f5c;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

#services .card:hover i {
  transform: scale(1.2);
  color: #0066cc;
}

/* Nadpis a text */
#services .card h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: #0a2f5c;
}

#services .card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}
