body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
      color: #333;
    }
    header {
      background-color: #111;
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 40px;
      margin-right: 10px;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin-left: 20px;
      font-weight: 600;
    }
    .hero {
    background: url('https://source.unsplash.com/1600x500/?travel,adventure') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    }

    .hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2rem 3rem;
    text-align: center;
    border-radius: 10px;
    }

    .hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    }

    .btn {
    background: #ff9800;
    color: white;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    }

    .btn:hover {
    background: #e67e22;
    }

   .packages {
    padding: 3rem 1rem;
    text-align: center;
    }

    .section {
      padding: 3rem 2rem;
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 1.5rem;
    }
    .feature {
      background: #f8f8f8;
      padding: 1rem;
      border-radius: 10px;
      width: 220px;
      text-align: center;
    }
    .cta {
      text-align: center;
      margin-top: 2rem;
    }
    .cta a {
      background: red;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .packages {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .package-card {
      width: 300px;
      border: 1px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .package-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .package-content {
      padding: 1rem;
    }
    .package-content h3 {
      margin: 0 0 0.5rem;
    }
    .package-content p {
      margin: 0.25rem 0;
    }
    .package-content a {
      display: inline-block;
      margin-top: 1rem;
      background: red;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      text-decoration: none;
    }
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }