li {
  list-style: none;
}

.image-list-section {
  padding: 20px;
}

.image-list-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

.image-card {
  text-align: center;
  max-width: 300px;
  flex: 1 1 calc(33.333% - 40px); /* Allows cards to scale and fit */
  box-sizing: border-box;
  margin-bottom: 20px;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-card ul {
  list-style-type: disc;
  margin-top: 10px;
  padding-left: 20px;
}

.image-card ul li {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
}
.compet-heading{
  font-size: 24px;
  margin-top: 20px;
}
/* Media Queries */
@media (max-width: 768px) {
  .image-list-container {
    gap: 15px;
  }

  .image-card {
    flex: 1 1 calc(50% - 30px); /* Adjusts to two cards per row */
  }
}

@media (max-width: 480px) {
  .image-list-container {
    flex-direction: column; /* Stacks cards vertically */
    align-items: center;
  }

  .image-card {
    flex: 1 1 100%; /* Full width for smaller devices */
  }
}
