#header{
  background: #fff !important;
  z-index: 123;
}

.back-popup{
  width: 100%;
  height: 100%;
  background: #0000006e;
  position: fixed;
  z-index: 99999999;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 610px;
    width: 100%;
    z-index: 10000;
    text-align: center;
    border: 1px solid #ddd;
}

.popup h2 {
    color: #0a66c2;
    font-size: 24px;
    margin: 0 0 15px 0;
    font-weight: 900;
}

.popup p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin: 15px 0;
}

.popup a {
    color: #0a66c2;
    text-decoration: underline;
}

.btn-download {
    background: #0a66c2;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    margin-top: 20px;
    cursor: pointer;
}