    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }

    .container {
      max-width: 700px;
      margin: 7rem auto 0;
      background: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    h1 {
      font-family: 'Tangerine', cursive;
      font-size: 3rem;
      /* color: #2c3e50; */
      text-align: center;
      margin-bottom: 0;
	  font-weight: 100;
	  margin-block-start: 0;
    }

    .contact {
      margin: 1rem 0;
    }

    .contact strong {
      display: block;
      margin-bottom: 0.2rem;
    }

    .services {
      margin-top: 1.5rem;
    }


	/* related to VTs */
    .container-VT {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 2rem;
      color: #333;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
      gap: 1.5rem;
	  justify-content: center;
    }

    .tour {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .tour img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .tour h3 {
      margin: 0;
      padding: 1rem;
      font-size: 1rem;
      color: #222;
	  font-weight: 400;
    }

    .tour a {
      text-decoration: none;
      color: inherit;
    }
	
	.lazy-img {
	  opacity: 0;
	  transition: opacity 0.8s ease-in-out;
	}
	.lazy-img.loaded {
	  opacity: 1;
	}	
	/* end related to VTs */
	
	/* related to arrow to scroll to top*/
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #007bff;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 50%;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #backToTop svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    #backToTop.show {
      opacity: 1;
    }
	/* end of scroll to top */
	
	/* related to fixed header */
	.top-bar {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: #007bff;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 1rem;
      z-index: 999;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .phone {
      font-size: 1rem;
	  padding-right: 1.5rem;
    }

    /* Add space at top so content doesn't hide behind bar */
    .content {
      padding-top: 60px;
    }
	/* end fixed header */
