/* Popup container */
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

/* Popup title */
.popup-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Popup content */
.popup-content {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Popup close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.popup-title {
  color: black;
}
.popup-content {
  color: black;
}
.popup-content .wpcf7-form-control {
  box-sizing: border-box;
}