.acadcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}
.acadhead {
  width: 200px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.acadhead img {
  width: 100%;
  height: auto;
}

.acadhead .content {
  padding: 10px;
}

.acadhead .content h3 {
  margin-top: 0;
}

.acadhead .content p {
  margin-bottom: 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .acadhead {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .card {
    width: 95%;
  }
}