.cf7-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.cf7-popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: popupFadeIn 0.3s ease-out;
}

.cf7-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.cf7-popup-close:hover {
  color: #333;
}

.cf7-popup-content h2 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 24px;
}

.cf7-popup-content p {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.cf7-redirect-message {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
  font-style: italic;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
