/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

/* Box */
.popup-box {
  position: relative;
    background: #f4f4f4;
  width: 500px;
  max-width: 90%;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Title */
.popup-box h2 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #333;
}

/* Text */
.popup-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button */
.btn-primary {
  background: #0b2f5b;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background: #092447;
}

/* Links */
.links {
  font-size: 14px;
  margin-bottom: 15px;
}

.links a {
  color: #0b2f5b;
  text-decoration: underline;
  margin: 0 5px;
}

/* Footer */
.footer-links {
  font-size: 12px;
  color: #777;
}

.footer-links a {
  color: #777;
  text-decoration: none;
}