    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f9fa;
    }
    .hero {
            padding: 100px 0;
      text-align: center;
      color: white;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
    }
    .hero .container {
      position: relative;
      z-index: 2;
    }
    .tour-card {
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .tour-card:hover {
      transform: translateY(-5px);
    }
    .day-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #198754;
      color: white;
      padding: 5px 12px;
      font-size: 14px;
      border-radius: 30px;
    }
    .package-card {
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .package-header {
      background: #198754;
      color: white;
      padding: 20px;
      text-align: center;
    }
    .package-price {
      font-size: 1.5rem;
      font-weight: bold;
      color: #198754;
    }
    .cta {
      background: #198754;
      color: white;
      padding: 50px 20px;
      text-align: center;
      border-radius: 15px;
      margin: 50px auto;
      max-width: 900px;
    }