
/* CARD */
.fee-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center;
}

/* HEADING */
.fee-card h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.fee-card h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* IMAGE WRAPPER */
.fee-image {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

/* IMAGE */
.fee-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.fee-image:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){

  .about {
    padding: 20px 0;
  }

  .fee-card {
    padding: 20px;
  }

  .fee-card h2 {
    font-size: 20px;
  }

}