body {
  font-family: Arial, sans-serif;
  line-height: 0.8rem 1rem;
}

/* Header */
.approach-header {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.0)),
              url('../images/g.jpg') center/cover no-repeat;
  color: #fff;
  padding: 150px 0;
  text-align: center;
}
.approach-header h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Sections */
.approach-section {
  padding: 60px 0;
}

/* Cards */
.approach-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.approach-card:hover {
  transform: translateY(-10px);
}
.approach-img {
  height: 220px;
  object-fit: cover;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
