  body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f7f7f7;
    background-size: cover;
    overflow-x: hidden;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
  }

  .logo {
    margin-top: 4px;
    height: 40px;
    cursor: pointer;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0rem 2rem;
    justify-content: flex-end;
  }

  nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
  }

  .noselect {
    user-select: none;
    pointer-events: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -ms-user-select: none;
  }

  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
    }

    .logo {
      height: 36px;
      margin: 0.5rem 0;
    }

    nav {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0rem 1rem;
    }

    nav a {
      font-size: 1rem;
      padding: 0.4rem 0.8rem;
    }
  }



  .main {
    text-align: center;
    padding: 3rem 1rem 1rem;
  }

  .main h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }

  .main p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }



  /* .gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 1rem;
  margin: 0 auto;
}


.gallery-scroll {
  width: 100vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 1rem;
  box-sizing: border-box;
}

.gallery-scroll img {
  display: block;
  height: auto;
  max-height: calc(100vh - 450px);
  width: auto;
  border-radius: 16px;
}



.gallery img {
  flex: 0 0 100vw;
  height: auto;
  scroll-snap-align: start;
  object-fit: cover;
  max-width: 100%;
  border-radius: 12px;
}

.gallery::-webkit-scrollbar {
  display: none;
} */


  @media (max-width: 768px) {
    .main h1 {
      font-size: 2rem;
    }

    .main p {
      font-size: 1rem;
    }

    .main button {
      font-size: 1rem;
      padding: 0.8rem 2rem;
    }
  }


  .image-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
  }

  .image-box {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
  }

  .image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  .overlay {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    color: white;
    text-align: right;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    max-width: 80%;
  }

  .overlay h2 {
    font-size: 3rem;
    margin: 0 0 0.5rem;
    font-weight: bold;
  }

  .overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .overlay .btn {
    font-size: 1.3rem;
    background: linear-gradient(to right, #F1BB3F, #FFC400);
    padding: 1rem 3rem;
    border-radius: 999px;
    text-decoration: none;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
    color: #000;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 0 0 6px #F9DCA0;
    transition: all 0.3s ease;
  }

  /* .main button {
  font-size: 1.2rem;
  background: linear-gradient(to right, #F1BB3F, #FFC400);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 10px #F9DCA0;
  z-index: 1;
}

.main button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.6);
}

.main button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: left 0.6s ease;
}

.main button:hover::after {
  left: 120%;
} */

  .overlay .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(218, 165, 32, 0.5);
  }

  @media (max-width: 768px) {
    .overlay {
      /* transform: none; */
      text-align: right;
      padding: 1rem;
    }

    .overlay h2 {
      font-size: 1rem;
      margin: 0 0 0.5rem;
    }

    .overlay p {
      font-size: 0.8rem;
      margin: 0 0 0.8rem;
    }

    .overlay .btn {
      font-size: 1rem;
      padding: 0.5rem 1.2rem;
      box-shadow: 0 0 0 4px #F9DCA0;
    }
  }

  img {
    -webkit-user-drag: none;
    user-drag: none;
  }