body {
      margin: 0;
      font-family: sans-serif;
      background: #fff;
      color: #222;
      overflow-x: hidden!important;
    }

    header, main, footer {
      max-width: 960px;
      margin: auto;
      padding: 20px;
    }

    /* Navbar */
    .navbar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .navbar img {
      max-width: 200px;
      height: auto;
    }

    .nav-links {
      display: flex;
      gap: 0px;
      overflow-x: hidden;
      white-space: nowrap;
      
    }

    .nav-links a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 16px;
    }

    .nav-links a:hover {
      background-color: #eee;
    }

    .nav-links::-webkit-scrollbar {
      display: none;
    }

    .nav-cta-full {
      width: 100%;
      text-align: center;
      margin-top: 10px;
    }

    .book-btn-full {
      background-color: #fb1d52;
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 20px;
      padding: 14px 24px;
      border-radius: 8px;
      display: inline-block;
      margin-top: 10px;
      transition: background 0.2s ease-in-out;
    }

    .book-btn-full:hover {
      background-color: #c91541;
    }

    /* Filters */
    .filters {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 10px;
      margin-bottom: 20px;
    }

    .filters::-webkit-scrollbar {
      display: none;
    }

    .filters select,
    .filters input[type="text"] {
      padding: 10px;
      font-size: 16px;
      flex-shrink: 0;
    }

    /* CTA */
   .cta {
      margin: 30px 0;
      background: url('images/maspalomas-buggy-tour.png') no-repeat center center;
      background-size: cover;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-shadow: 1px 1px 2px #000;
      padding: 20px;
      border-radius: 6px;
      text-align: center;
    }

    .cta h2 {
      margin-bottom: 10px;
      font-size: 28px;
    }

    .cta p {
      font-size: 18px;
      max-width: 600px;
    }

    /* Listings + Sidebar */
    main {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .listings {
      flex: 1 1 60%;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .card {
      border: 1px solid #ccc;
      padding: 15px;
      border-radius: 6px;
    }
.card img {
      border: 1px solid #ccc;
     
      width:100%;
    }
    .card-title {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .card-meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 5px;
    }

    .card-buttons a {
      display: inline-block;
      padding: 8px 12px;
      margin-right: 10px;
      font-size: 14px;
      background: #eee;
      text-decoration: none;
      color: #000;
      border-radius: 4px;
    }

    aside {
      flex: 1 1 35%;
      border-left: 1px solid #ccc;
      padding-left: 15px;
    }

    aside h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    aside ul {
      list-style: none;
      padding: 0;
      font-size: 15px;
      color: #444;
    }

    /* Footer */
    footer {
      border-top: 1px solid #ccc;
      font-size: 14px;
      color: #555;
      margin-top: 40px;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    .footer-col {
      flex: 1 1 200px;
    }

    .footer-col a {
      display: block;
      text-decoration: none;
      color: #000;
      margin-bottom: 5px;
    }

    .footer-col a:hover {
      text-decoration: underline;
    }

    footer p {
      margin: 5px 0;
      text-align: center;
    }

    footer img {
      display: block;
      margin: 10px auto;
    }

    @media (max-width: 600px) {
      .navbar img {
        max-width: 140px;
      }
.navbar {
    gap: 0px;
}
      .filters {
        flex-direction: column;
      }

      .filters select,
      .filters input[type="text"] {
       
        padding: 10px;
      }

      .card-buttons a {
        display: block;
        margin: 5px 0;
      }

      main {
        flex-direction: column;
      }

      aside {
        border-left: none;
        padding-left: 0;
      }

      .footer-columns {
        flex-direction: column;
        align-items: flex-start;
      }
    }.faq, .reviews {
  margin: 40px 0;
}

.faq h2, .reviews h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.faq-item, .review {
  margin-bottom: 15px;
}

.faq-item p, .review p {
  margin: 5px 0;
}

  