.popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }

    .popup {
      background: url('di-bruno-popup.webp') center/cover no-repeat;
      width: 420px;
      max-width: 90%;
      padding: 40px 30px;
      color: #000;
      border-radius: 10px;
      text-align: center;
      position: relative;
      background-color: white;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .popup .close-btn {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 24px;
      cursor: pointer;
      font-weight: bold;
      background: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      line-height: 30px;
    }

    .popup h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .popup h1 {
      font-size: 30px;
      color: #000;
      margin-bottom: 15px;
    }


    .popup button {
      width: 100%;
      background: #F3C623;
      color: #fff;
      font-weight: bold;
      border: none;
      padding: 12px;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
    }

    .popup .no-thanks {
      margin-top: 15px;
      background: transparent;
      color: #fff;
      text-decoration: underline;
      font-size: 14px;
      border: none;
      cursor: pointer;
    }