/* === Info Cards Section === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: linear-gradient(180deg, rgba(30, 0, 0, 0.4), rgba(10, 0, 0, 0.7));
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 20px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
      border: 1px solid rgba(255, 0, 0, 0.25);
    box-shadow: 0 0 20px rgba(255, 50, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.info-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 100, 0, 0.5);
  border-color: rgba(255, 100, 0, 0.8);
}

.info-card .ico {
  max-width: 120px;
  max-height: 120px;
  height: auto;
  display: block;
  border-radius: 10px;
  animation: subtleFloat 3s ease-in-out infinite;
  margin: 0 auto; /* ✅ to sprawia, że będzie idealnie na środku */
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  font-family: 'Oxygen', sans-serif;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  font-family: 'Oxygen', sans-serif;
}