* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    .tour-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      background-color: #008b8b;
      height: 300px;
      cursor: pointer;
    }

    .tour-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .price-tag {
      position: absolute;
      top: 35px;
      right: 10px;
      background: #008b8b;
      transform: rotate(-90deg);
      color: white;
      padding: 6px 12px;
      font-weight: bold;
      border-radius: 5px;
      z-index: 1;
    }

    .tour-info {
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      padding: 15px;
      background: rgba(0, 0, 0, 0.4);
      transition: bottom 0.5s ease, opacity 0.5s ease;
    }

    .TourPages.line-effect {
      position: relative;
      display: inline-block;
      font-size: 1.25rem;
      text-transform: uppercase;
      padding-bottom: 8px;
    }

    .TourPages.line-effect::before {
      content: "";
      position: absolute;
      height: 2px;
      background-color: #fff;
      bottom: 0;
      left: 0;
      width: 25%;
      transition: width 0.5s ease;
    }

    .TourPages.line-effect.hovered::before {
      width: 100%;
    }

    .TourPages a {
      color: white;
      text-decoration: none;
    }

    .TourPages a:hover {
      color: white;
    }

    .tour-meta {
        color: white;
      display: flex;
      gap: 15px;
      font-size: 0.9rem;
      padding-top: 10px;
    }

    .tour-meta i {
      color: #ffffff;
    }

    @media (max-width: 576px) {
      .tour-card {
        height: 250px;
      }
    }