@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* version 1.4.2 */

:root {
  --pm-primary: #19887D;
  --pm-primary-light: #34B3A2;
  --pm-primary-bg: #f4fefa;
  --pm-primary-border: #d0e7e1;
  --pm-primary-soft: #D0F7EF;
  
  --pm-text-dark: #111111;
  --pm-text-body: #444444;
  --pm-text-muted: #666666;
  
  --pm-radius-sm: 8px;
  --pm-radius-md: 12px;
  --pm-radius-pill: 20px;
  --pm-btn-radius: 50px;
  
  --pm-font-heading: Poppins, sans-serif;
  --pm-font-body: Inter, sans-serif;

  --pm-spacing-sm: 20px;
  --pm-spacing-md: 44px;
  --pm-spacing-lg: 64px;
  --pm-spacing-xl: 96px;

  --pm-card-radius: 15px;
}

@media (max-width: 1024px) {
  :root {
    --pm-spacing-sm: 16px;
    --pm-spacing-md: 32px;
    --pm-spacing-lg: 40px;
    --pm-spacing-xl: 64px;
  }
}

@media (max-width: 600px) {
  :root {
    --pm-spacing-sm: 12px;
    --pm-spacing-md: 32px;
    --pm-spacing-lg: 32px;
    --pm-spacing-xl: 64px;
  }
}

body {
    font-size: 16px;
    color: #1F1F1F;
}

a {
    color: #19887D;
}

/* Typography */
h1, .h1 {
    font-size: 60px;
    line-height: 1.14;
    font-weight: 600;
    margin: 0;
}

h2, .h2 {
    font-size: 44px;
    line-height: 1.14;
    font-weight: 600;
    margin: 0;
}

h3, .h3 {
    font-size: 36px;
    line-height: 1.14;
    font-weight: 600;
    margin: 0;
}

.text-2xl {
    font-size: 28px;
}

.text-xl {
    font-size: 26px;
}

.text-lg {
    font-size: 18px;
}

.text-md {
    font-size: 16px;
}

.text-sm {
    font-size: 14px;
}

p {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    h1, .h1 {
        font-size: 48px;
    }
    
    h2, .h2 {
        font-size: 36px;
    }
    
    h3, .h3 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    h1, .h1 {
        font-size: 32px;
    }
    
    h2, .h2 {
        font-size: 27px;
    }
    
    h3, .h3 {
        font-size: 22px;
    }
}

/* Button */
.btn {
  border-radius: var(--pm-btn-radius);
  width: 100%;
  max-width: 364px;
  padding-block: 13px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
  margin: 0 0 12px 0;
  box-shadow: none;
  transition: all .3s;
}

.btn:hover { 
    opacity: 1;
    filter: unset;
}
.btn:hover { opacity: 0.9; }

.btn-primary {
  background: var(--pm-primary);
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #157369;
  color: #ffffff;
  transform: scale(1.025);
}

.btn-secondary {
  background: transparent;
  color: var(--pm-primary);
  border: 2px solid var(--pm-primary);
}

.btn-text-arrow {
  background: transparent !important;
  color: var(--pm-primary);
  padding: 0;
  width: auto;
  max-width: none;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
  border: none;
}
 
.btn-text-arrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M7.56756 13.128L11.0396 9.144H1.16756V7.256H11.0396L7.56756 3.272H10.4476L14.8316 8.2L10.4476 13.128H7.56756Z' fill='%23188980'/%3E%3C/svg%3E");
  transition: transform 0.2s;
}
 
.btn-text-arrow:hover {
  opacity: 1;
}
 
.btn-text-arrow:hover::after {
  transform: translateX(3px);
}

/* Spacing */
.mt-small  { margin-top: var(--pm-spacing-sm); }
.mt-medium { margin-top: var(--pm-spacing-md); }
.mt-large  { margin-top: var(--pm-spacing-lg); }
.mt-xl     { margin-top: var(--pm-spacing-xl); }

.mb-small  { margin-bottom: var(--pm-spacing-sm); }
.mb-medium { margin-bottom: var(--pm-spacing-md); }
.mb-large  { margin-bottom: var(--pm-spacing-lg); }
.mb-xl     { margin-bottom: var(--pm-spacing-xl); }

.pt-small  { padding-top: var(--pm-spacing-sm); }
.pt-medium { padding-top: var(--pm-spacing-md); }
.pt-large  { padding-top: var(--pm-spacing-lg); }
.pt-xl     { padding-top: var(--pm-spacing-xl); }

.pb-small  { padding-bottom: var(--pm-spacing-sm); }
.pb-medium { padding-bottom: var(--pm-spacing-md); }
.pb-large  { padding-bottom: var(--pm-spacing-lg); }
.pb-xl     { padding-bottom: var(--pm-spacing-xl); }

/* Container */

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0;
}

@media (max-width: 1400px) {
  .container {
    padding-inline: 32px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-inline: 32px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 16px;
  }
}

/* Bullet Point */
.desc-richtext.bullet-checklist ul,
.desc-richtext.bullet-checklist-large ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  padding: 0 0 0 16px;
}

.desc-richtext.bullet-checklist ul li,
.desc-richtext.bullet-checklist-large ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.desc-richtext.bullet-checklist ul li:last-child,
.desc-richtext.bullet-checklist-large ul li:last-child {
  margin-bottom: 0;
}

.desc-richtext.bullet-checklist ul li::before,
.desc-richtext.bullet-checklist-large ul li::before {
  content: "";
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

/* ===== SMALL CHECKLIST (22px) ===== */
.desc-richtext.bullet-checklist ul li::before {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Crect width='22' height='22' rx='11' fill='white'/%3E%3Cpath d='M6.87492 10.9999L9.62492 13.7499L15.1249 8.24992M20.1666 10.9999C20.1666 16.0625 16.0625 20.1666 10.9999 20.1666C5.93731 20.1666 1.83325 16.0625 1.83325 10.9999C1.83325 5.93731 5.93731 1.83325 10.9999 1.83325C16.0625 1.83325 20.1666 5.93731 20.1666 10.9999Z' stroke='%2334B3A2' stroke-width='1.83333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ===== LARGE CHECKLIST (48px) ===== */
.desc-richtext.bullet-checklist-large ul li::before {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  margin-top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56' fill='none'%3E%3Crect x='4' y='4' width='48' height='48' rx='24' fill='%23D0F7ED'/%3E%3Crect x='4' y='4' width='48' height='48' rx='24' stroke='%23F1FCF9' stroke-width='8'/%3E%3Cpath d='M23.875 28.2209L26.625 30.9709L32.125 25.4709M37.1667 28.2209C37.1667 33.2835 33.0626 37.3875 28 37.3875C22.9374 37.3875 18.8333 33.2835 18.8333 28.2209C18.8333 23.1583 22.9374 19.0542 28 19.0542C33.0626 19.0542 37.1667 23.1583 37.1667 28.2209Z' stroke='%23178A7B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#section-header {
    min-height: 62px;
}

#section-header header.header {
    box-shadow: none;
    position: unset;
}

.header .header__content--desktop {
    padding: 24px 0 0;
}

/* Mobile adjustment for large checklist */
@media (max-width: 600px) {
  .desc-richtext.bullet-checklist-large ul li::before {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}

/* Form */
.form-wrapper form {
  width: 100%;
}
 
.form-wrapper .form-group {
  margin-bottom: 24px;
}
 
.form-wrapper label {
  font-family: var(--pm-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: #484848;
  margin-bottom: 6px;
  display: block;
  line-height: 1.4em;
}
 
.form-wrapper .req-star {
  color: var(--pm-primary);
  font-family: var(--pm-font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
}
 
.form-wrapper .form-control {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: var(--pm-radius-sm);
  border: 1px solid #D5D7DA;
  background: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  flex: 1 0 0;
  color: #717680;
  font-family: var(--pm-font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
 
.form-wrapper .form-control:focus {
  border-color: var(--pm-primary);
}
 
.form-wrapper textarea.form-control {
  min-height: 114px;
  resize: vertical;
}
 
.form-wrapper .checkbox-field {
  margin-bottom: 16px;
}
 
.form-wrapper .checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
  color: #484848;
  line-height: 1.5;
  margin: 0;
  padding-left: 32px;
  position: relative;
}
 
.form-wrapper .checkbox-field input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
 
.form-wrapper .checkbox-field .overlay {
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 2px;
  transition: all 0.2s ease-in-out;
}
 
.form-wrapper .checkbox-field .overlay::after {
  content: "";
  display: none;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
 
.form-wrapper .checkbox-field input[type="checkbox"]:checked ~ .overlay {
  background-color: var(--pm-primary);
  border-color: var(--pm-primary);
}
 
.form-wrapper .checkbox-field input[type="checkbox"]:checked ~ .overlay::after {
  display: block;
}
 
.form-wrapper .btn {
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}