*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body.popup-active {
    overflow: hidden;
  }

.bg-image-section{
    width: 100%;
    height: 100vh;
    position: relative;
}
.bg-image-section img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.bg-image-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000036;
    width: 100%;
    height: 100%;
}
#age-popup {
    position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2); /* semi-transparent */
  backdrop-filter: blur(8px); /* blur effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  }
.btn-success{
    background-color: rgb(12 213 12);
    color: #fff;
    border: none;
    padding: 5px 20px;
    
}
.btn-danger{
    background-color: rgb(255, 16, 16);
    color: #fff;
    border: none;
    padding: 5px 20px;

}
  .popup-box {
    background-color: #ffffffad;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    max-width: 450px;
    width: 90%;
    font-size: 28px;
    border-radius: 5px;
  }

  .popup-box h5{
    font-size: 24px;
    font-weight: 700;
    color: #000;
  }

  .contact-section{
    background-color: #000;
    padding: 20px;
    border-bottom: 1px solid #ffffff8c;
    color: #fff;
  }
  .contact-section a{
    color: #fff;
    text-decoration: none;
  }
  .logo{
    position: absolute;
    left: 70px;
    top: 50px;
    width: 100px;
  }
.privacy-logo img{
    width: 100px;
}

@media (max-width: 992px){
    .form-mob-1{
        flex-direction: column;
        gap: 20px;
      }
      .logo{
        left: 20px;
      }
      .bg-image-section{
        height: calc(100vh - 180px);
      }
}