/* Info Cards Section */
.info-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 90%;
  max-width: 1000px;
  margin-top: 0px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.info-card {
  background-color: #009045; /* Vibrant green matching reference */
  border: 3px solid #f4b41a;
  border-radius: 30px;
  padding: 30px;
  flex: 1;
  min-width: 280px; /* Reduced min-width to prevent overflow on very small screens */
  width: 100%; /* Ensure it can take full width if needed */
  box-sizing: border-box; /* Include padding/border in width calculation */
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-card h2 {
  color: #f4b41a;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: none; /* Reference image header is mixed case but mostly lowercase-ish style? Keeping simpler */
}

.info-card ol,
.info-card ul {
  text-align: center;
  padding-left: 20px;
  margin-bottom: 0;
  display: inline-block; /* Centers the list block itself */
}

.info-card li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .info-cards-container {
    flex-direction: column;
    align-items: center;
    width: 95%; /* Use more width on mobile */
  }

  .info-card {
    width: 100%;
    max-width: 100%; /* Remove restriction to allow full width usage */
    min-width: 0; /* Allow shrinking below previous min-width */
  }
}
