.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  background-color: #fff;
  text-align: center;
}

.info-box {
  flex: 1 1 220px;
  max-width: 250px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ Center align image and text */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
}

/* Headings & Paragraphs */
.info-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}

.info-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 95%;
  text-align: center;
}

/* Tablet Responsive */
@media (max-width: 900px) {
  .info-section {
    gap: 30px;
    padding: 40px 5%;
  }
  .info-box {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .info-section {
    flex-direction: column;
    gap: 35px;
  }
  .info-box {
    flex: 1 1 100%;
    max-width: 90%;
  }
}
