
  .white-box {
    background: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('img/gplay.png');
    border-radius: 30px;
    padding: 25px;
    box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: fit-content;
    margin: 0 auto;
  }

  .white-box .left,
  .white-box .right {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .white-box .left img {
    max-width: 150px;
  }

  .white-box .center {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .white-box .integration-icon {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  }

  .white-box .payment-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .white-box .payment-logos img {
    max-width: 160px;
    height: auto;
    transition: transform 0.5s ease;
    animation: logoBounce 4s ease-in-out infinite;
  }

  .white-box .payment-logos img:hover {
    transform: scale(1.1);
  }

  .white-box .payment-logos img:nth-child(2) {
    max-width: 130px;
  }

  .white-box .payment-logos img:nth-child(4) {
    max-width: 100px;
  }

  #product-integrations img {
    transition: transform 0.3s ease;
  }

  #product-integrations img:hover {
    transform: scale(1.1);
  }

  #product-integrations a {
    transition: background 0.3s ease, transform 0.3s ease;
  }

  #product-integrations a:hover {
    background: rgb(255 59 59 / var(--tw-bg-opacity, 1));
    transform: scale(1.05);
  }

  .title-products {
    font-size: 1.2rem;
    line-height: 1.75rem;
  }

  .cursor {
    cursor: pointer !important;
  }

  #popup-form {
    transition: opacity 0.3s ease;
  }

  .wf_customMessageBox {
    font-family: Arial, Helvetica, sans-serif;
    color: #132C14;
    background: #F5FAF5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    max-width: 90%;
    width: max-content;
    z-index: 11000;
    border-radius: 6px;
    border: 1px solid #A9D3AB;
    padding: 10px 15px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
  }

  .wf_customCircle {
    background-color: #12AA67;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    position: relative;
  }

  .wf_customCheckMark {
    position: absolute;
    left: 1.2rem;
    top: 9px;
    height: 8px;
    width: 3px;
  }

  /* Contact Form Styles */
  .wf_customMessageBox {
    font-family: Arial, sans-serif;
    color: #333;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    width: 420px;
    padding: 24px 28px;
    border-radius: 16px;
    border: 2px solid #B01010;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    text-align: center;
    font-size: 18px;
    animation: popBounce 0.4s ease;
  }

  .wf_customCircle {
    width: 60px;
    height: 60px;
    background-color: #B01010;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wf_customCheckMark::after {
    content: '✓';
    color: white;
    font-size: 30px;
    font-weight: bold;
  }


  #wf_splash_info {
    font-size: 1.125rem;
    color: #333;
    margin-top: 0.5rem;
  }

    /* Confirmation message box */
/* Confirmation modal */
#wf_splash {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999; /* higher than backdrop */
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeInScale 0.3s ease-in-out;
}

  /* Animations */
  /* Simple animation for splash */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  

/* Backdrop (dim effect) */
#wf_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s ease;
}

  /* Dims the entire screen */
#wf_backdrop.show {
  opacity: 1;
  pointer-events: auto;
}