 .body {
      font-family: 'Segoe UI', sans-serif;
      background: #f5f9f8;
    }
    .hero {
    background: url('../img/top-station.jpg') no-repeat center center/cover;
      color: white;
      padding: 60px 20px;
      text-align: center;
      animation: fadeIn 2s ease-in;
    }
    .card:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease-in-out;
    }
    .section-title {
      font-size: 2rem;
      font-weight: bold;
      margin: 40px 0 20px;
      text-align: center;
      color: #2f675c;
    }
    @keyframes fadeIn {
      0% {opacity: 0; transform: translateY(-30px);}
      100% {opacity: 1; transform: translateY(0);}
    }