.info-section {
  background-color: #F2F6FF;
}

.info-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
}

.info-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.info-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-card ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #0D10C1;
  margin-top: 1rem;
}

.section-title {
  font-weight: 700;
  color: #333;
}

.info-card .card-subtitle {
  min-height: 4.5rem;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.info-card .btn-hero {
  margin-top: auto;
}
