    body {
      margin: 0;
      font-family: "Inter", Arial, sans-serif;
      background: #f6f6f6;
      color: #333;
      line-height: 1.6;
	    min-height: 100vh;
		display: flex;
		flex-direction: column;
    }
	
	main {
	  flex: 1;
	}
	
	section {
  flex-grow: 1;
}

    h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 25px;
      padding-left: 18px;
      padding-bottom: 8px;
      position: relative;
      display: inline-block;
    }

    h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 100%;
      background: #444;
      border-radius: 2px;
    }

    h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background: #444;
      border-radius: 2px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: #222;
      color: white;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      margin: 0;
      font-size: 1.8rem;
    }

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background: white;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: #222;
      padding: 20px;
    }

    .mobile-nav a {
      color: white;
      margin: 10px 0;
    }

    .hero {
      background: url('https://www.westbuilt.com.au/hubfs/Maleny_C01_Front.jpg?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 0 2px 6px rgba(0,0,0,0.5);
      padding: 0 20px;
      text-align: center;
      animation: fadeIn 1.5s ease-in-out;
    }

	.hero h2 {
	  font-size: 3rem;
	  font-weight: 700;
	  position: relative;
	  padding-left: 18px;
	  padding-bottom: 8px;
	  color: white;
	  display: inline-block;
	}

	.hero h2::before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: 0;
	  width: 5px;
	  height: 100%;
	  background: white; /* vertical bar color */
	  border-radius: 2px;
	}

	.hero h2::after {
	  content: "";
	  position: absolute;
	  left: 0;
	  bottom: 0;
	  width: 100%;
	  height: 3px;
	  background: white; /* bottom line color */
	  border-radius: 2px;
	}

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    section {
      max-width: 1100px;
      margin: 50px auto;
      padding: 0 20px;
    }

    .offer-box {
      background: white;
      padding: 25px 30px;
      border-radius: 14px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      margin-bottom: 40px;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background: white;
      border-radius: 12px;
      padding: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px 12px 0 0;
      display: block;
    }

    .card h3 {
      margin: 15px 20px 10px;
    }

    .card p {
      margin: 0 20px 15px;
    }
	
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.03);
    }
	
    .gallery2 {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery2 img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery2 img:hover {
      transform: scale(1.03);
    }
	
	.img-container {
	  position: relative;
	  display: inline-block;
	  cursor: pointer;
	}

	.tooltip {
	  visibility: hidden;
	  opacity: 0;
	  position: absolute;
	  bottom: 10px;
	  left: 50%;
	  transform: translateX(-50%);
	  background-color: rgba(0,0,0,0.8);
	  color: #fff;
	  padding: 6px 10px;
	  border-radius: 6px;
	  font-size: 0.9rem;
	  white-space: nowrap;
	  transition: opacity 0.3s;
	  pointer-events: none;
	}

	.img-container:hover .tooltip {
	  visibility: visible;
	  opacity: 1;
	}

    footer {
      text-align: center;
      padding: 20px;
      background: #222;
      color: white;
	  margin-top: auto;
    }

    @media (max-width: 768px) {
      nav { display: none; }
      .burger { display: flex; }
      .hero { height: 45vh; }
      .hero h2 { font-size: 2rem; }

      .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }

      .gallery img {
        aspect-ratio: 1 / 1;
      }
	  
	   .gallery2 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }

      .gallery2 img {
        aspect-ratio: 1 / 1;
      }
	  
    }