* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .navbar {
    background: #1a237e;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
  }
  
  .hero {
    background: url('../images/kenya-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
  }
  
  .hero .btn {
    background: #ff9800;
    color: white;
    padding: 1rem 2rem;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .packages {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .package-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .package-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 300px;
    padding-bottom: 1rem;
  }
  
  .package-card img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
  }
  
  .package-card h3 {
    margin: 1rem 0 0.5rem;
  }
  
  .package-card p {
    color: #555;
  }
  
  .btn-small {
    background: #1a237e;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .footer {
    background: #1a237e;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
  }
  .package-detail {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .detail-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .package-detail .btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: #1a237e;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
  }
  .booking-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .booking-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .booking-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }
  
  .booking-form input {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .booking-form .btn {
    background: #1a237e;
    color: white;
    padding: 1rem;
    margin-top: 2rem;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-content {
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
  }

  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #ffa500;
    color: white;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
  }

  .indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .indicator {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
  }

  .indicator.active {
    opacity: 1;
    background: #ffa500;
  }