.exit-banner {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}

.exit-banner.is-active {
  display: flex;
  animation: fadeIn 0.3s ease;
  opacity: 1;
}

.exit-banner__inner {
  background: #fff;
  padding: 40px 23px 0 23px;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.exit-banner__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.exit-banner__content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.exit-banner__btn {
  display: inline-block;
  background: #002c6a;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1.2rem;
  font-weight: bold;
}

.exit-banner__btn:hover {
  background: #004099;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


@media screen and (max-width: 768px) {
  .exit-banner__inner{
    padding: 47px 12px 0 12px;
  }
}