.cta-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFF;
  padding: 146px 60px;
  border-radius: 30px;
  margin-top: 50px;
}
.cta-module h3 {
  color: #FFF;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing -2px;
  margin: 0;
}
.cta-module p {
  color: #FFF;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing -2px;
  margin: 0;
}
a.cta-trigger {
  display: inline-block;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  padding: 9px 37.3px;
  background: #009FA3;
  color: #FFF;
  margin-top: 50px;
  cursor: pointer;
}
a.cta-trigger:hover {
  background: #58E1D3;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(8px); 
}
html.popup-active,
.popup-active body
{
  overflow: hidden;
}

/* Popup Content */
.popup-content {
  background: #fff;
  padding: 20px 10px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  width: 640px;
  max-width: 98%;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}

.popup-content form {
  display: flex;
  flex-direction: column;
}
.popup-content input {
  margin: 10px 0 5px 0;
  padding: 10px;
}

.popup-inner {
  width: 520px;
  max-width: 100%;
  margin: auto;
}
.popup-content h2 {
  font-size: 32px;
  letter-spacing: -2px;
  line-height: 1;
  margin: 30px 0 0 0;
  font-weight: 900;
} 
.popup-content .legal-consent-container {
  display: none; 
}

.popup-content .hs-dependent-field>label, .hs-form-field>label {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
.popup-content form input {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  border: 0;
  box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.05), 0px 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.15);
}
.popup-content form input:focus{
  box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px #009FA3, 0px 0px 0px 4px rgba(0, 159, 163, 0.25);
} 
.popup-content form .hs_submit input {
  box-shadow: none;
  border: 0;
  background: #009FA3;
  border-radius: 40px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -1px;
  padding: 13px 10px;
  margin-top: 4px;
}
.popup-content form .hs_submit input:hover {
  background: #58E1D3;
}
.popup-content p {
  text-align: left;
  margin: 30px 0 40px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: rgba(0,0,0,0.5);
}
.popup-content p a{
  color: rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-module h3 {
    font-size: 30px; 
  }
  .popup-content h2 {
    font-size: 30px; 
  }
}
@media (max-width: 450px) {
  a.cta-trigger {
    font-size: 18px;
    padding: 9px 20px;
  }
}