.popup-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.text-content {
  text-align: center;
  padding: 20px;
}
.text-content h1 {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0 10px;
}
.text-content p {
  font-size: 22px;
  font-style: italic;
  margin: 0;
}
.modal-content {
  border-radius: 10px;
  position: relative;
}
.custom-close-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #00509e; /* Dark blue background */
  color: white; /* White cross */
  border: none;
  border-radius: 50%; /* Circular shape */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  z-index: 2;
}
.custom-close-btn:hover {
  background-color: #003f7d; /* Slightly darker blue on hover */
}