  section.featured-hikes {
      padding: 60px 0;
      background-color: #f8f9fa;
    }

    .hike-card {
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      position: relative;
      transition: transform 0.2s ease-in-out;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .hike-card:hover {
      transform: translateY(-5px);
    }

    .hike-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .price-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: #0b3d2e;
      color: #fff;
      font-weight: bold;
      padding: 5px 10px;
      border-radius: 8px;
      font-size: 14px;
    }

    .hike-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .hike-category {
      font-size: 0.85rem;
      color: #7f8c8d;
      margin-bottom: 8px;
    }

    .hike-info {
      font-size: 0.85rem;
      color: #0b3d2e;
      margin-bottom: 15px;
    }

    .btn-book {
      background-color: #0b3d2e;
      color: #fff;
      border-radius: 8px;
      padding: 8px 16px;
      font-weight: 500;
    }

    .btn-book:hover {
      background-color: #0b3d2ed3;
    }

      .packages-section {
      padding: 60px 0;
    }

    .packages-section h5 {
      color: #0b3d2e;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .packages-section h2 {
      color: #0b3d2e;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .packages-section p {
      color: #6c757d;
      margin-bottom: 40px;
    }

    .package-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 20px;
      height: 100%;
    }

    .package-icon {
      width: 50px;
      height: 50px;
      background-color: #0b3d2e;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 15px;
    }

    .package-text {
      flex: 1;
      padding-right: 15px;
    }

    .package-text h5 {
      color: #0b3d2e;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .package-text p {
      font-size: 0.85rem;
      color: #6c757d;
      margin-bottom: 10px;
    }

    .learn-more {
      font-weight: 500;
      font-size: 0.85rem;
      color: #0b3d2e;
      text-decoration: none;
    }

    .learn-more:hover {
      text-decoration: underline;
    }

    .package-image {
      width: 120px;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
    }