
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      background: #111;
      color: #fff;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header h1 {
      margin: 0;
      font-size: 22px;
    }
    nav a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      font-size: 16px;
    }
    nav a:hover {
      color: #f4c542;
    }
    .hero {
      background: url('../img/tour-page-img/header.jpg') center/cover no-repeat;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.4);
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero h2 {
      font-size: 38px;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 18px;
    }
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 30px 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin-top: -60px;
      position: relative;
      z-index: 2;
    }
    h2 {
      margin-top: 30px;
      color: #f4c542;
    }
    ul {
      padding-left: 20px;
    }
    .cta-box {
      background: #f4c542;
      padding: 20px;
      margin: 30px 0;
      border-radius: 10px;
      text-align: center;
    }
    .cta-box h3 {
      margin: 0 0 10px;
    }
    .btn-primary {
      display: inline-block;
      background: #111;
      color: #fff;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 6px;
      margin-top: 10px;
    }
    .btn-primary:hover {
      background: #333;
    }
    blockquote {
      border-left: 4px solid #f4c542;
      padding-left: 12px;
      margin: 15px 0;
      font-style: italic;
      background: #fdf8e3;
    }
    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
      margin: 25px 0 40px;
    }
    .gallery img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }
    /* WhatsApp & Back to Top */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
    }
    .whatsapp-icon {
      width: 50px;
      height: 50px;
      background-color: #4adf81;
    }
    .whatsapp-chat-bubble {
      position: fixed;
      bottom: 80px;
      right: 20px;
      background: #25D366;
      color: #fff;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 14px;
      z-index: 100;
    }
    #back-to-top {
      position: fixed;
      bottom: 140px;
      right: 20px;
      background: #111;
      color: #fff;
      padding: 10px 14px;
      border-radius: 50%;
      display: none;
      text-decoration: none;
      font-size: 18px;
    }
  