.about-story-section ul li {
  margin-bottom: 0.5rem;
}
.about-story-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-story-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.about-story-section img {
  transition: transform 0.5s ease-in-out;
}
.about-story-section img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.about-story-section h2 {
  background: linear-gradient(45deg, #00a896, #02c39a);
  display: inline-block;
}
.about-story-section a.btn-outline-light:hover {
  background-color: #02c39a;
  border-color: #02c39a;
  color: #fff;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.about-story-section .card-body i {
  transition: transform 0.3s ease;
}
.about-story-section .card:hover i {
  transform: scale(1.3) rotate(10deg);
}
