.site-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;

  justify-content: center;
  align-items: center;
}

.site-popup-overlay.active {
  display: flex;
}

.site-popup {
  position: relative;
  width: 528px;
  min-height: 444px;
  height: auto;
  background-color: #c1cdbf;
  color: #050505;
  padding: 52px 60px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.site-popup h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 24px;
}

.site-popup p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 10px;
}

.site-popup a {
  color: #050505;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-popup a:hover,
.site-popup a:visited,
.site-popup a:active {
  color: #050505;
}

.site-popup-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.site-popup-contact-btn {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #050505;
  font-family: inherit;
}

.site-popup-checkbox {
  font-size: 16px;
  color: #050505;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #050505;
  font-weight: 300;
}

.site-popup-contact-info {
  display: none;
}

.site-popup-contact-info.active {
  display: block;
  margin-top: 10px;
  line-height: 1.3;
  font-size: 15px;
}
