
body {
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.about-hero {
  background: url('./image/img7.png') center/cover;
  color: white;
  padding: 100px 0;
  position: relative;
  margin-top: 20px;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero .content {
  position: relative;
  z-index: 2;
}

/* SECTION */
.section-title {
  font-weight: 700;
}
.highlight {
  color: #0d6efd;
}

/* CARD */
.info-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
}

/* FEATURE */
.feature-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
}
.feature-icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0d6efd;
}

/* IMAGE */
.about-img {
  width: 100%;
  border-radius: 12px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-hero {
    padding: 70px 0;
    text-align: center;
  }
}
