body {
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f1f6;
}

/* Popup Styling */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 500px;
  z-index: 1000;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.popup.show {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  background-color: #960018;
  color: #fff;
}

.popup h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.popup p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

.popup button {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
  width: 48%;
}

/* Overlay effect */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: opacity 0.4s ease-out;
}

.overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 991px) {
  .popup {
    width: 450px;
  }
}

@media (max-width: 767px) {
  .popup {
    width: 350px;
  }
}