        @font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('opentype');
  font-style: normal;
}
    
  /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

/* Hero Section */
.hero {
  width: 100%;
  height: 105vh;
  background-image: url("../images/LP Banner.png"); /* Desktop Image */
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Top Button */
.top-btn {
  position: absolute;
  top: 85vh;
  right: 64vw;
  padding: 1rem 5vw;
  background-color: #ffd700;
  color: #ffffff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
      border-radius: 2.3rem;
    border: 3px solid #000;
  transition: 0.3s ease;
  text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

/* Footer */
.footer {
  width: 100%;
  padding: 0.6rem 1vw;
  background-color: #111;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
    justify-content: center;
}

.privacy-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Mobile Image */
@media (max-width: 768px) {
  .hero {
    background-image: url("../images/LP Bannermobile.png"); /* Mobile Image */
            background-size: 100% 100%;
                    height: 96vh;
  }

  .top-btn {
        right: 23vw;
    top: 85vh;
    padding: 0.8rem 10vw;
    font-size: 1.4rem;
  }
  
  .footer {
    width: 100%;
    padding: 1rem 1vw;
    background-color: #111;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
}
}