body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Source Code Pro', monospace;
}

.page_shell {
  box-sizing: border-box;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.site_header {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #ADCCBD;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.header_top_band {
  background: linear-gradient(90deg, #EBF2F1 0%, #ffffff 60%, #EBF2F1 100%);
  border-bottom: 1px solid #ADCCBD;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header_top_band .page_shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header_address {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.15;
  color: #2a5c53;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header_address_icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4EA796;
  border-radius: 1px;
  flex-shrink: 0;
}

.header_phone_link {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.15;
  color: #2a5c53;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.08s ease-out;
}

.header_phone_link:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  border-radius: 1px;
}

.header_phone_link:hover {
  color: #4EA796;
}

.header_main_row {
  padding-top: 24px;
  padding-bottom: 24px;
}

.header_main_row .page_shell {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo_mount {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08), 0 0 0 2px #ADCCBD;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.logo_mount img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand_text_mount {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.brand_name {
  font-family: 'Source Code Pro', monospace;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  color: #1d4a42;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: block;
}

.brand_name:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  border-radius: 1px;
}

.brand_tagline {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.15;
  color: #4EA796;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.primary_navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.primary_navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.primary_navigation ul li {
  flex-shrink: 0;
}

.primary_navigation ul li a {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  color: #1d4a42;
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 8px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  display: block;
  transition: background-color 0.1s ease-out, color 0.1s ease-out, border-color 0.1s ease-out;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primary_navigation ul li a:hover {
  background: #EBF2F1;
  border-color: #ADCCBD;
  color: #4EA796;
}

.primary_navigation ul li a:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  background: #EBF2F1;
}

.primary_navigation ul li a[aria-current="page"] {
  background: #4EA796;
  color: #ffffff;
  border-color: #4EA796;
}

.header_accent_bar {
  height: 4px;
  background: linear-gradient(90deg, #4EA796 0%, #ADCCBD 50%, #EBF2F1 100%);
}

.header_texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.header_texture::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 40px solid #EBF2F1;
  opacity: 0.5;
}

.header_texture::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 16px solid #ADCCBD;
  opacity: 0.3;
}

.site_header .page_shell,
.site_header .header_top_band .page_shell,
.site_header .header_main_row .page_shell {
  position: relative;
  z-index: 1;
}

.site_footer {
  background: #1d4a42;
  position: relative;
  overflow: hidden;
}

.footer_accent_top {
  height: 4px;
  background: linear-gradient(90deg, #EBF2F1 0%, #4EA796 50%, #ADCCBD 100%);
}

.footer_body {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer_body .page_shell {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.footer_brand_column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 180px;
}

.footer_logo_rule {
  border: none;
  border-top: 1px solid rgba(173, 204, 189, 0.3);
  margin: 0;
}

.footer_logo_mount {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08), 0 0 0 2px #4EA796;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.footer_logo_mount img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer_brand_name {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  color: #EBF2F1;
  letter-spacing: -0.02em;
}

.footer_copy {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #ADCCBD;
  letter-spacing: 0;
}

.footer_contact_column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 200px;
}

.footer_column_label {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  color: #4EA796;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(78, 167, 150, 0.3);
}

.footer_contact_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_contact_list li {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #ADCCBD;
}

.footer_contact_list li a {
  color: #ADCCBD;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.footer_contact_list li a:hover {
  color: #EBF2F1;
}

.footer_contact_list li a:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  border-radius: 1px;
  color: #EBF2F1;
}

.footer_contact_list .contact_label {
  color: rgba(173, 204, 189, 0.6);
  font-size: 13px;
  margin-right: 8px;
}

.footer_links_column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 180px;
}

.footer_links_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_links_list li a {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #ADCCBD;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.1s ease-out;
}

.footer_links_list li a:hover {
  color: #EBF2F1;
}

.footer_links_list li a:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  border-radius: 1px;
  color: #EBF2F1;
}

.footer_link_marker {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: #4EA796;
  flex-shrink: 0;
}

.footer_bottom {
  border-top: 1px solid rgba(173, 204, 189, 0.2);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer_bottom .page_shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer_legal_text {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.15;
  color: rgba(173, 204, 189, 0.5);
}

.footer_social_links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer_social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(78, 167, 150, 0.3);
  color: #ADCCBD;
  text-decoration: none;
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.12s ease-out, border-color 0.12s ease-out, color 0.12s ease-out;
}

.footer_social_link:hover {
  background: rgba(78, 167, 150, 0.15);
  border-color: #4EA796;
  color: #EBF2F1;
}

.footer_social_link:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  color: #EBF2F1;
}

.footer_decor_circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer_decor_circle.large {
  width: 300px;
  height: 300px;
  border: 60px solid rgba(78, 167, 150, 0.05);
  bottom: -100px;
  right: -60px;
}

.footer_decor_circle.small {
  width: 120px;
  height: 120px;
  border: 24px solid rgba(173, 204, 189, 0.06);
  top: 40px;
  left: 5%;
}

.consent_strip {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 680px;
  max-width: calc(100% - 48px);
  background: #ffffff;
  border: 1px solid #ADCCBD;
  border-radius: 4px;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
  padding: 24px;
  box-sizing: border-box;
  z-index: 1000;
  display: none;
}

.consent_strip_text {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #1d4a42;
  margin-bottom: 24px;
}

.consent_strip_text a {
  color: #4EA796;
  text-decoration: underline;
  transition: color 0.08s ease-out;
}

.consent_strip_text a:hover {
  color: #1d4a42;
}

.consent_strip_text a:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  border-radius: 1px;
}

.consent_actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.consent_btn {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.08s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.consent_btn:focus {
  transform: scale(1.02);
  outline: 2px solid #4EA796;
  outline-offset: 2px;
  border-radius: 1px;
}

.consent_btn.accept {
  color: #4EA796;
}

.consent_btn.accept:hover {
  color: #1d4a42;
}

.consent_btn.decline {
  color: #1d4a42;
}

.consent_btn.decline:hover {
  color: #4EA796;
}

@media (max-width: 1024px) {
  .page_shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header_main_row .page_shell {
    flex-wrap: wrap;
    gap: 24px;
  }

  .primary_navigation {
    width: 100%;
    justify-content: flex-start;
  }

  .primary_navigation ul {
    justify-content: flex-start;
  }

  .footer_body .page_shell {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .page_shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header_top_band .page_shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .primary_navigation ul {
    gap: 8px;
  }

  .primary_navigation ul li a {
    padding: 8px;
    font-size: 13px;
  }

  .footer_body .page_shell {
    flex-direction: column;
    gap: 24px;
  }

  .footer_bottom .page_shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent_actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.policy-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
}

.policy-inner h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2a27;
  margin-bottom: 40px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid #EBF2F1;
}

.policy-inner h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #1b2a27;
  margin-top: 80px;
  margin-bottom: 24px;
}

.policy-inner h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1b2a27;
  margin-top: 40px;
  margin-bottom: 24px;
}

.policy-inner h4 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #1b2a27;
  margin-top: 40px;
  margin-bottom: 8px;
}

.policy-inner h5 {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4EA796;
  margin-top: 40px;
  margin-bottom: 8px;
}

.policy-inner h6 {
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4EA796;
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy-inner p {
  font-size: 16px;
  line-height: 1.65;
  color: #253330;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 72ch;
}

.policy-inner strong,
.policy-inner b {
  font-weight: 700;
  color: #1b2a27;
}

.policy-inner em,
.policy-inner i {
  font-style: italic;
  color: #2e4440;
}

.policy-inner a {
  color: #4EA796;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.1s ease-out, text-decoration-color 0.1s ease-out;
}

.policy-inner a:hover {
  color: #3a7d6e;
  text-decoration-color: #ADCCBD;
}

.policy-inner a:visited {
  color: #3a7d6e;
}

.policy-inner hr {
  border: none;
  border-top: 1px solid #ADCCBD;
  margin-top: 40px;
  margin-bottom: 40px;
}

.policy-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.65;
  color: #253330;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.policy-inner thead {
  background-color: #EBF2F1;
}

.policy-inner thead tr {
  border-bottom: 2px solid #ADCCBD;
}

.policy-inner tbody tr {
  border-bottom: 1px solid #EBF2F1;
  transition: background-color 0.08s ease-out;
}

.policy-inner tbody tr:last-child {
  border-bottom: none;
}

.policy-inner tbody tr:hover {
  background-color: #f4f9f8;
}

.policy-inner th {
  padding: 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1b2a27;
}

.policy-inner td {
  padding: 24px;
  vertical-align: top;
  color: #253330;
}

@media (max-width: 1024px) {
  .policy-inner {
    padding: 80px 40px;
  }

  .policy-inner h1 {
    font-size: 38px;
  }

  .policy-inner h2 {
    font-size: 28px;
  }

  .policy-inner h3 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .policy-inner {
    padding: 40px 24px;
  }

  .policy-inner h1 {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .policy-inner h2 {
    font-size: 21px;
    margin-top: 40px;
  }

  .policy-inner h3 {
    font-size: 16px;
    margin-top: 24px;
  }

  .policy-inner h4 {
    font-size: 16px;
    margin-top: 24px;
  }

  .policy-inner table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .policy-inner th,
  .policy-inner td {
    padding: 24px 8px;
    min-width: 120px;
  }
}

.about-us-page {
  background-color: #ffffff;
  color: #1a2e2b;
  overflow-x: clip;
  position: relative;
}

.about-us-page .geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(78, 167, 150, 0.07);
  pointer-events: none;
  z-index: 0;
}

.about-us-page .geo-circle.large {
  width: 600px;
  height: 600px;
  top: -120px;
  right: -180px;
  border-color: rgba(78, 167, 150, 0.05);
}

.about-us-page .geo-circle.medium {
  width: 320px;
  height: 320px;
  top: 200px;
  left: -100px;
  border-color: rgba(173, 204, 189, 0.08);
}

.about-us-page .page-max {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about-us-page .divider-geometric {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  height: 12px;
}

.about-us-page .divider-geometric span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: rgba(78, 167, 150, 0.18);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.about-us-page .divider-geometric span:nth-child(3n+1) {
  background-color: rgba(78, 167, 150, 0.30);
}

.about-us-page .divider-geometric span:nth-child(5n+2) {
  background-color: rgba(173, 204, 189, 0.22);
  width: 4px;
  height: 4px;
}

.about-us-page .key-dash {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #4EA796;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}

.about-us-page .strip-image-block {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 0px;
}

.about-us-page .strip-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(12%) contrast(1.04);
  transition: filter 0.12s ease-out;
}

.about-us-page .strip-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(235, 242, 241, 0.45) 100%);
  pointer-events: none;
}

.about-us-page .strip-image-block .grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.about-us-page .strip-edge-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #4EA796, transparent);
  border-radius: 0px;
}

.about-us-page .title-zone {
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.about-us-page .title-zone .label-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.about-us-page .title-zone .label-text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4EA796;
  font-weight: 600;
}

.about-us-page .title-zone .heading-primary {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #12201e;
  margin: 0 0 24px 0;
  max-width: 720px;
}

.about-us-page .title-zone .heading-secondary {
  font-size: 21px;
  line-height: 1.65;
  font-weight: 400;
  color: #3a5450;
  margin: 0;
  max-width: 560px;
}

.about-us-page .title-zone .heading-secondary strong {
  color: #4EA796;
  font-weight: 700;
}

@media (max-width: 640px) {
  .about-us-page .title-zone .heading-primary {
    font-size: 38px;
  }

  .about-us-page .strip-image-block {
    height: 120px;
  }
}

.about-us-page .identity-strip {
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.about-us-page .identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .about-us-page .identity-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-us-page .identity-grid {
    grid-template-columns: 1fr;
  }
}

.about-us-page .identity-card {
  background: #ffffff;
  border: 1px solid rgba(78, 167, 150, 0.14);
  border-radius: 4px;
  padding: 40px 24px;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  transition: box-shadow 0.10s ease-out, border-color 0.10s ease-out;
  position: relative;
}

.about-us-page .identity-card:hover {
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  border-color: rgba(78, 167, 150, 0.28);
}

.about-us-page .identity-card .card-number {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  color: rgba(78, 167, 150, 0.18);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}

.about-us-page .identity-card .card-label {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: #12201e;
  margin: 0 0 8px 0;
}

.about-us-page .identity-card .card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #4a6560;
  margin: 0;
}

.about-us-page .team-block {
  background: #EBF2F1;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.30;
  }

  50% {
    opacity: 0.55;
  }

  100% {
    opacity: 0.30;
  }
}

.about-us-page .team-block .glow-center {
  position: absolute;
  width: 700px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 50% at center, rgba(78, 167, 150, 0.12) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.about-us-page .team-block .team-inner {
  position: relative;
  z-index: 1;
}

.about-us-page .team-block .team-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.about-us-page .team-block .team-heading-col {
  flex: 1;
}

.about-us-page .team-block .team-heading-col h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #12201e;
  margin: 0 0 8px 0;
}

.about-us-page .team-block .team-heading-col p {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5450;
  margin: 0;
  max-width: 440px;
}

.about-us-page .team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 640px) {
  .about-us-page .team-layout {
    grid-template-columns: 1fr;
  }

  .about-us-page .team-block .team-heading-row {
    flex-direction: column;
  }
}

.about-us-page .team-photo-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-page .photo-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  position: relative;
}

.about-us-page .photo-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.12s ease-out, brightness 0.10s ease-out;
  filter: brightness(1);
}

.about-us-page .photo-frame:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.about-us-page .photo-frame .photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(18, 32, 30, 0.72), transparent);
  padding: 24px 24px 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-us-page .team-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-page .expert-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  border-top: 3px solid #4EA796;
  transition: box-shadow 0.10s linear;
}

.about-us-page .expert-card:hover {
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.about-us-page .expert-card .expert-name {
  font-size: 16px;
  font-weight: 800;
  color: #12201e;
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.about-us-page .expert-card .expert-role {
  font-size: 13px;
  color: #4EA796;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.about-us-page .expert-card .expert-bio {
  font-size: 13px;
  line-height: 1.65;
  color: #4a6560;
  margin: 0;
}

.about-us-page .data-block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.about-us-page .data-block .data-heading {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: #12201e;
  margin: 0 0 8px 0;
}

.about-us-page .data-block .data-subtext {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5450;
  margin: 0 0 40px 0;
  max-width: 500px;
}

.about-us-page .data-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .about-us-page .data-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-us-page .data-table-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(78, 167, 150, 0.14);
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
}

.about-us-page .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.about-us-page .data-table thead tr {
  background: #4EA796;
  color: #ffffff;
}

.about-us-page .data-table thead th {
  padding: 8px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.about-us-page .data-table tbody tr {
  background: #ffffff;
  transition: background 0.08s linear;
}

.about-us-page .data-table tbody tr:nth-child(even) {
  background: #EBF2F1;
}

.about-us-page .data-table tbody tr:hover {
  background: #ADCCBD;
}

.about-us-page .data-table tbody td {
  padding: 8px 24px;
  color: #12201e;
  line-height: 1.65;
  border-bottom: 1px solid rgba(78, 167, 150, 0.08);
}

.about-us-page .data-table tbody td:first-child {
  font-weight: 600;
  color: #2c4a45;
}

.about-us-page .image-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-page .side-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.about-us-page .side-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.14s ease-out;
}

.about-us-page .side-photo:hover img {
  transform: scale(1.025);
}

.about-us-page .side-note {
  background: linear-gradient(to right, #4EA796, #ADCCBD);
  border-radius: 4px;
  padding: 24px;
  color: #ffffff;
}

.about-us-page .side-note p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

.about-us-page .side-note strong {
  font-weight: 800;
}

.about-us-page .approach-block {
  background: #EBF2F1;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.about-us-page .approach-block .bg-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      transparent,
      transparent 28px,
      rgba(78, 167, 150, 0.04) 28px,
      rgba(78, 167, 150, 0.04) 29px);
  pointer-events: none;
  z-index: 0;
}

.about-us-page .approach-block .approach-inner {
  position: relative;
  z-index: 1;
}

.about-us-page .approach-heading {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #12201e;
  margin: 0 0 8px 0;
}

.about-us-page .approach-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5450;
  margin: 0 0 40px 0;
  max-width: 520px;
}

.about-us-page .approach-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
}

.about-us-page .step-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  border-left: 4px solid #4EA796;
  border-right: 1px solid rgba(173, 204, 189, 0.30);
  transition: box-shadow 0.10s ease-out;
}

.about-us-page .step-row:hover {
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.about-us-page .step-num {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  color: rgba(78, 167, 150, 0.22);
  letter-spacing: -0.04em;
  min-width: 40px;
  flex-shrink: 0;
}

.about-us-page .step-text-col {
  flex: 1;
}

.about-us-page .step-text-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: #12201e;
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.about-us-page .step-text-col p {
  font-size: 13px;
  line-height: 1.65;
  color: #4a6560;
  margin: 0;
}

.about-us-page .approach-image-aside {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .about-us-page .approach-image-aside {
    grid-template-columns: 1fr;
  }
}

.about-us-page .approach-side-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
  position: sticky;
  top: 40px;
}

.about-us-page .approach-side-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.14s ease-out, filter 0.10s ease-out;
  filter: brightness(0.97);
}

.about-us-page .approach-side-img:hover img {
  transform: scale(1.02);
  filter: brightness(1.02);
}

@media (max-width: 640px) {
  .about-us-page .approach-side-img img {
    height: 220px;
  }

  .about-us-page .step-num {
    font-size: 28px;
  }

  .about-us-page .approach-heading {
    font-size: 28px;
  }

  .about-us-page .data-block .data-heading {
    font-size: 21px;
  }
}

.lead {
  max-width: 100%;
  overflow-x: hidden;
}

.lead .page_container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Drop from above animation */
@keyframes drop_in {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead .animate_drop {
  animation: drop_in 0.5s ease-out both;
}

.lead .animate_drop.delay_1 {
  animation-delay: 0.08s;
}

.lead .animate_drop.delay_2 {
  animation-delay: 0.18s;
}

.lead .animate_drop.delay_3 {
  animation-delay: 0.28s;
}

.lead .animate_drop.delay_4 {
  animation-delay: 0.38s;
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */
.lead .title_block {
  padding: 80px 24px;
  background: #fff;
  border-bottom: 1px solid #ADCCBD;
  position: relative;
}

.lead .title_block::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  bottom: 24px;
  border: 1px dashed #ADCCBD;
  border-radius: 4px;
  pointer-events: none;
}

.lead .title_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.lead .title_text_column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.lead .title_text_column::after {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #4EA796, transparent);
  border-radius: 1px;
}

.lead .title_eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #4EA796;
  font-weight: 600;
  text-transform: uppercase;
}

.lead .title_heading {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  color: #1b2a27;
  letter-spacing: -0.02em;
  margin: 0;
}

.lead .title_heading span {
  color: #4EA796;
}

.lead .title_thesis {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  max-width: 420px;
  margin: 0;
}

.lead .title_actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.lead .btn_primary {
  background: #4EA796;
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.1s ease-out, box-shadow 0.12s ease-out;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  text-decoration: none !important;
  display: inline-block;
}

.lead .btn_primary:hover {
  background: #3d8a7a;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.lead .btn_primary:active {
  background: #2f6e61;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.18);
}

.lead .btn_secondary {
  background: transparent;
  color: #4EA796;
  border: 1.5px solid #4EA796;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.1s ease-out, color 0.1s ease-out;
  text-decoration: none !important;
  display: inline-block;
}

.lead .btn_secondary:hover {
  background: #EBF2F1;
  color: #3d8a7a;
}

.lead .title_image_column {
  flex: 0 0 460px;
  position: relative;
}

.lead .title_image_frame {
  width: 460px;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
}

.lead .title_image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lead .title_image_frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 0% 0%, rgba(78, 167, 150, 0.38) 0%, transparent 70%);
  pointer-events: none;
}

.lead .title_badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border: 1px solid #ADCCBD;
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.lead .title_badge_number {
  font-size: 28px;
  font-weight: 900;
  color: #4EA796;
  line-height: 1.15;
  display: block;
}

.lead .title_badge_label {
  font-size: 13px;
  color: #3a4f4a;
  display: block;
}

/* ===================== SECTION 2 - HESITATION ===================== */
.lead .hesitation_block {
  padding: 80px 24px;
  background: #EBF2F1;
}

.lead .hesitation_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.lead .hesitation_image_side {
  flex: 0 0 380px;
  position: relative;
}

.lead .hesitation_image_wrap {
  width: 380px;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.lead .hesitation_image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lead .hesitation_tag {
  position: absolute;
  top: 24px;
  right: -16px;
  background: #4EA796;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.lead .hesitation_text_side {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead .section_label {
  font-size: 13px;
  color: #4EA796;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead .hesitation_heading {
  font-size: 38px;
  font-weight: 900;
  color: #1b2a27;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead .hesitation_body {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  margin: 0;
}

.lead .hesitation_points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lead .hesitation_points li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.65;
  color: #1b2a27;
}

.lead .hesitation_points li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: #4EA796;
  margin-top: 10px;
}

/* ===================== SECTION 3 - SCALE / NUMBERS ===================== */
.lead .scale_block {
  padding: 80px 24px;
  background: #1b2a27;
  position: relative;
}

.lead .scale_pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lead .scale_pattern svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.lead .scale_inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.lead .scale_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 80px;
  text-align: center;
}

.lead .scale_label {
  font-size: 13px;
  color: #ADCCBD;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead .scale_heading {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead .scale_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lead .scale_card {
  background: rgba(78, 167, 150, 0.10);
  border: 1px solid rgba(173, 204, 189, 0.20);
  border-radius: 10px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background-color 0.12s ease-out, border-color 0.12s ease-out;
}

.lead .scale_card:hover {
  background: rgba(78, 167, 150, 0.18);
  border-color: rgba(173, 204, 189, 0.40);
}

.lead .scale_number {
  font-size: 52px;
  font-weight: 900;
  color: #4EA796;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead .scale_unit {
  font-size: 21px;
  font-weight: 700;
  color: #ADCCBD;
  line-height: 1.15;
}

.lead .scale_description {
  font-size: 16px;
  line-height: 1.65;
  color: #ADCCBD;
  margin: 0;
}

/* Divider triangles */
.lead .divider_triangles {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  background: #EBF2F1;
}

.lead .divider_triangles svg {
  display: block;
}

/* ===================== SECTION 4 - GAP ===================== */
.lead .gap_block {
  padding: 80px 24px;
  background: #EBF2F1;
}

.lead .gap_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.lead .gap_label_column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.lead .gap_heading {
  font-size: 38px;
  font-weight: 900;
  color: #1b2a27;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead .gap_steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lead .gap_step {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.lead .gap_step_number {
  font-size: 38px;
  font-weight: 900;
  color: #4EA796;
  line-height: 1.15;
  flex-shrink: 0;
  width: 48px;
}

.lead .gap_step_text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead .gap_step_heading {
  font-size: 21px;
  font-weight: 700;
  color: #1b2a27;
  line-height: 1.15;
  margin: 0;
}

.lead .gap_step_body {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  margin: 0;
}

.lead .gap_image_column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lead .gap_image_wrap {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
}

.lead .gap_image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hover triangle mask effect */
.lead .gap_image_wrap {
  position: relative;
  cursor: pointer;
}

.lead .gap_image_overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 167, 150, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.12s ease-out;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.lead .gap_image_wrap:hover .gap_image_overlay {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: opacity 0.12s ease-out, clip-path 0.15s ease-out;
}

.lead .gap_image_overlay_text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

/* ===================== SECTION 5 - EXPERIENCE ===================== */
.lead .experience_block {
  padding: 80px 24px;
  background: #fff;
}

.lead .experience_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lead .experience_top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.lead .experience_heading {
  font-size: 38px;
  font-weight: 900;
  color: #1b2a27;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 480px;
}

.lead .experience_subtext {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  max-width: 320px;
  margin: 0;
}

.lead .experience_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lead .experience_card {
  background: #EBF2F1;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid transparent;
  transition: border-color 0.1s ease-out, box-shadow 0.12s ease-out;
}

.lead .experience_card:hover {
  border-color: #ADCCBD;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.lead .experience_card_quote {
  font-size: 16px;
  line-height: 1.65;
  color: #1b2a27;
  margin: 0;
  font-style: italic;
}

.lead .experience_card_person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.lead .experience_card_image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.lead .experience_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lead .experience_card_name {
  font-size: 16px;
  font-weight: 700;
  color: #1b2a27;
  display: block;
}

.lead .experience_card_role {
  font-size: 13px;
  color: #4EA796;
  display: block;
}

/* ===================== SECTION 6 - CURRENT / CONNECTED ===================== */
.lead .current_block {
  padding: 80px 24px;
  background: #fff;
  border-top: 1px solid #EBF2F1;
}

.lead .current_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead .current_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead .current_heading {
  font-size: 38px;
  font-weight: 900;
  color: #1b2a27;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead .current_body {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  margin: 0;
}

.lead .current_topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lead .current_topic_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #EBF2F1;
  border-radius: 4px;
  border-left: 3px solid #4EA796;
  border-top: 1px solid #ADCCBD;
  border-right: 1px solid #ADCCBD;
  border-bottom: 1px solid #ADCCBD;
  transition: background-color 0.1s ease-out;
}

.lead .current_topic_item:hover {
  background: #d8eae4;
}

.lead .current_topic_label {
  font-size: 16px;
  font-weight: 600;
  color: #1b2a27;
}

.lead .current_image_side {
  position: relative;
}

.lead .current_image_wrap {
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
}

.lead .current_image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lead .current_floating_card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: #4EA796;
  color: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  max-width: 200px;
}

.lead .current_floating_card_text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

/* ===================== SECTION 7 - TEAM ===================== */
.lead .team_block {
  padding: 80px 24px;
  background: #EBF2F1;
}

.lead .team_inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lead .team_top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
}

.lead .team_heading {
  font-size: 38px;
  font-weight: 900;
  color: #1b2a27;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead .team_subtext {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  margin: 0;
}

.lead .team_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.lead .team_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  transition: box-shadow 0.12s ease-out;
}

.lead .team_card:hover {
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.lead .team_card_image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.lead .team_card.featured .team_card_image {
  height: 300px;
}

.lead .team_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lead .team_card_body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead .team_card_name {
  font-size: 21px;
  font-weight: 900;
  color: #1b2a27;
  line-height: 1.15;
  margin: 0;
}

.lead .team_card.featured .team_card_name {
  font-size: 28px;
}

.lead .team_card_role {
  font-size: 13px;
  color: #4EA796;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead .team_card_bio {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f4a;
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .lead .title_inner {
    flex-direction: column;
    gap: 40px;
  }

  .lead .title_image_column {
    flex: 0 0 auto;
    width: 100%;
  }

  .lead .title_image_frame {
    width: 100%;
    height: 300px;
  }

  .lead .title_badge {
    left: 16px;
    bottom: -16px;
  }

  .lead .hesitation_inner {
    flex-direction: column;
    gap: 40px;
  }

  .lead .hesitation_image_side {
    flex: 0 0 auto;
    width: 100%;
  }

  .lead .hesitation_image_wrap {
    width: 100%;
    height: 240px;
  }

  .lead .scale_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead .gap_inner {
    grid-template-columns: 1fr;
  }

  .lead .gap_label_column {
    order: 0;
  }

  .lead .gap_steps {
    order: 1;
  }

  .lead .gap_image_column {
    order: 2;
  }

  .lead .current_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead .current_floating_card {
    right: 8px;
    bottom: -16px;
  }

  .lead .team_grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead .team_card.featured {
    grid-column: 1 / -1;
  }

  .lead .team_card.featured .team_card_image {
    height: 240px;
  }

  .lead .experience_cards {
    grid-template-columns: 1fr;
  }

  .lead .experience_top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .lead .title_block {
    padding: 40px 24px;
  }

  .lead .title_block::before {
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
  }

  .lead .title_heading {
    font-size: 38px;
  }

  .lead .title_actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead .hesitation_block,
  .lead .gap_block,
  .lead .experience_block,
  .lead .current_block,
  .lead .team_block {
    padding: 40px 24px;
  }

  .lead .scale_block {
    padding: 40px 24px;
  }

  .lead .scale_top {
    margin-bottom: 40px;
  }

  .lead .scale_grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .lead .scale_number {
    font-size: 38px;
  }

  .lead .hesitation_heading,
  .lead .gap_heading,
  .lead .experience_heading,
  .lead .current_heading,
  .lead .team_heading,
  .lead .scale_heading {
    font-size: 28px;
  }

  .lead .team_grid {
    grid-template-columns: 1fr;
  }

  .lead .team_card.featured {
    grid-column: auto;
  }

  .lead .gap_inner {
    gap: 24px;
  }

  .lead .experience_card {
    padding: 24px;
  }

  .lead .team_card_body {
    padding: 16px;
  }
}

.contact-us-page {
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.contact-us-page .page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-us-page ::selection {
  background: #4EA796;
  color: #ffffff;
}

.contact-us-page .channel-panel {
  background: #EBF2F1;
  padding: 80px 0 40px;
  position: relative;
}

.contact-us-page .channel-panel::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-top: 18px solid #EBF2F1;
  z-index: 2;
}

.contact-us-page .channel-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-us-page .channel-left {
  position: relative;
}

.contact-us-page .channel-left-image {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
}

.contact-us-page .channel-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.4) brightness(1.1);
  display: block;
}

.contact-us-page .channel-left-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.contact-us-page .channel-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #4EA796;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-us-page .channel-heading {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  color: #1b3a35;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact-us-page .channel-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #2d5a52;
}

.contact-us-page .channel-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-us-page .contact-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
}

.contact-us-page .contact-card:hover {
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
  transform: translateY(-2px);
}

.contact-us-page .card-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 4px;
  background: #4EA796;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.contact-us-page .card-icon-box svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.contact-us-page .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us-page .card-label {
  font-size: 13px;
  color: #4EA796;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-us-page .card-value {
  font-size: 16px;
  line-height: 1.65;
  color: #1b3a35;
  font-weight: 600;
}

.contact-us-page .card-value a {
  color: #1b3a35;
  text-decoration: none;
  border-bottom: 1px solid #ADCCBD;
  transition: color 0.1s linear, border-color 0.1s linear;
}

.contact-us-page .card-value a:hover {
  color: #4EA796;
  border-color: #4EA796;
}

.contact-us-page .card-sub {
  font-size: 13px;
  color: #4d7a72;
  line-height: 1.65;
}

.contact-us-page .connection-diagram {
  margin-top: 8px;
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  border-top: 3px solid #4EA796;
  border-left: 1px solid #EBF2F1;
  border-right: 1px solid #EBF2F1;
  border-bottom: 1px solid #EBF2F1;
}

.contact-us-page .diagram-label {
  font-size: 13px;
  color: #4EA796;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-us-page .diagram-nodes {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.contact-us-page .diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.contact-us-page .node-circle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EBF2F1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-page .node-circle svg {
  width: 20px;
  height: 20px;
  fill: #4EA796;
}

.contact-us-page .node-text {
  font-size: 13px;
  color: #2d5a52;
  font-weight: 600;
  text-align: center;
}

.contact-us-page .diagram-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #4EA796, transparent);
  border-radius: 1px;
  margin-bottom: 20px;
}

.contact-us-page .form-panel {
  padding: 80px 0 80px;
  background: #ffffff;
}

.contact-us-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-us-page .form-sidebar {
  position: relative;
  padding-top: 8px;
}

.contact-us-page .form-sidebar-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.contact-us-page .form-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  filter: saturate(0.3) brightness(1.2);
  display: block;
}

.contact-us-page .form-sidebar-text {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  padding: 24px;
}

.contact-us-page .form-sidebar-heading {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: #1b3a35;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-us-page .form-sidebar-note {
  font-size: 16px;
  line-height: 1.65;
  color: #2d5a52;
}

.contact-us-page .form-sidebar-meta {
  margin-top: 24px;
  padding: 24px;
  background: #EBF2F1;
  border-radius: 4px;
}

.contact-us-page .meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-us-page .meta-item:last-child {
  margin-bottom: 0;
}

.contact-us-page .meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #4EA796;
  min-width: 8px;
}

.contact-us-page .meta-text {
  font-size: 13px;
  color: #2d5a52;
  line-height: 1.65;
}

.contact-us-page .form-area {
  background: #ffffff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  border: 1px solid #EBF2F1;
}

.contact-us-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-us-page .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-us-page .form-field:last-of-type {
  margin-bottom: 0;
}

.contact-us-page .field-label {
  font-size: 13px;
  font-weight: 700;
  color: #1b3a35;
  letter-spacing: 0.04em;
}

.contact-us-page .field-label .required-mark {
  color: #4EA796;
  margin-left: 2px;
}

.contact-us-page .field-input {
  height: 48px;
  border: 1px solid #ADCCBD;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 16px;
  color: #1b3a35;
  background: #ffffff;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.06);
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.contact-us-page .field-input:focus {
  outline: none;
  border-color: #4EA796;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.08), 0 0 0 3px rgba(78, 167, 150, 0.12);
}

.contact-us-page .field-input::placeholder {
  color: #ADCCBD;
}

.contact-us-page .field-select {
  height: 48px;
  border: 1px solid #ADCCBD;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 16px;
  color: #1b3a35;
  background: #ffffff;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.06);
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%234EA796' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.contact-us-page .field-select:focus {
  outline: none;
  border-color: #4EA796;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.08), 0 0 0 3px rgba(78, 167, 150, 0.12);
}

.contact-us-page .radio-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-us-page .radio-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-us-page .radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4EA796;
  cursor: pointer;
}

.contact-us-page .radio-option-label {
  font-size: 16px;
  color: #1b3a35;
  cursor: pointer;
}

.contact-us-page .field-textarea {
  border: 1px solid #ADCCBD;
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  color: #1b3a35;
  background: #ffffff;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.06);
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
}

.contact-us-page .field-textarea:focus {
  outline: none;
  border-color: #4EA796;
  box-shadow: inset 0 2px 4px 0 rgba(78, 167, 150, 0.08), 0 0 0 3px rgba(78, 167, 150, 0.12);
}

.contact-us-page .field-textarea::placeholder {
  color: #ADCCBD;
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: 8px;
}

.contact-us-page .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #4EA796;
  margin-top: 3px;
  cursor: pointer;
}

.contact-us-page .privacy-text {
  font-size: 13px;
  line-height: 1.65;
  color: #4d7a72;
}

.contact-us-page .privacy-text a {
  color: #4EA796;
  text-decoration: none;
  border-bottom: 1px solid #ADCCBD;
  transition: border-color 0.1s linear;
}

.contact-us-page .privacy-text a:hover {
  border-color: #4EA796;
}

.contact-us-page .submit-button {
  height: 52px;
  padding: 0 40px;
  background: #4EA796;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  transition: background 0.12s ease-out, box-shadow 0.1s ease-out, transform 0.08s ease-out;
  letter-spacing: 0.02em;
}

.contact-us-page .submit-button:hover {
  background: #3d8a7a;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
  transform: translateY(-1px);
}

.contact-us-page .submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
}

.contact-us-page .submit-button:focus {
  outline: 3px solid rgba(78, 167, 150, 0.4);
  outline-offset: 2px;
}

.contact-us-page .form-section-divider {
  height: 1px;
  background: linear-gradient(to right, #4EA796, transparent);
  margin-bottom: 24px;
  border-radius: 1px;
}

.contact-us-page .form-group-label {
  font-size: 13px;
  font-weight: 700;
  color: #4EA796;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@keyframes card-flip-in {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }

  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

.contact-us-page .contact-card {
  animation: card-flip-in 0.35s ease-out both;
}

.contact-us-page .contact-card:nth-child(1) {
  animation-delay: 0.05s;
}

.contact-us-page .contact-card:nth-child(2) {
  animation-delay: 0.15s;
}

.contact-us-page .contact-card:nth-child(3) {
  animation-delay: 0.25s;
}

.contact-us-page .contact-card:nth-child(4) {
  animation-delay: 0.35s;
}

.contact-us-page .punctuation-anchor {
  font-size: 66px;
  line-height: 1.15;
  font-weight: 900;
  color: #ADCCBD;
  opacity: 0.5;
  position: absolute;
  top: -16px;
  left: -8px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.contact-us-page .channel-left-overlay {
  z-index: 1;
}

@media (max-width: 1024px) {
  .contact-us-page .channel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-us-page .channel-left-image {
    height: 220px;
  }

  .contact-us-page .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-us-page .form-sidebar-image {
    height: 180px;
  }

  .contact-us-page .form-area {
    padding: 24px;
  }

  .contact-us-page .channel-heading {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .contact-us-page .channel-panel {
    padding: 40px 0 24px;
  }

  .contact-us-page .form-panel {
    padding: 40px 0;
  }

  .contact-us-page .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-us-page .form-area {
    padding: 24px 16px;
  }

  .contact-us-page .radio-group {
    flex-direction: column;
    gap: 8px;
  }

  .contact-us-page .channel-heading {
    font-size: 21px;
  }

  .contact-us-page .form-sidebar-heading {
    font-size: 21px;
  }

  .contact-us-page .channel-left-overlay {
    padding: 24px;
  }

  .contact-us-page .submit-button {
    width: 100%;
  }

  .contact-us-page .diagram-nodes {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-us-page .diagram-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, #4EA796, transparent);
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.services_page {
  background: #ffffff;
  overflow-x: clip;
}

.services_page .page_container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes bounce_drop {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  60% {
    opacity: 1;
    transform: translateY(8px);
  }

  80% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

.services_page .title_band {
  position: relative;
  background: #1b2a27;
  padding: 80px 24px;
}

.services_page .title_band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.2' fill='%234EA796' fill-opacity='0.18'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.services_page .title_band_grid {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 80px;
}

.services_page .title_text_col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: bounce_drop 0.55s ease-out both;
}

.services_page .title_faded_number {
  position: absolute;
  top: -24px;
  left: -8px;
  font-size: 160px;
  font-weight: 900;
  color: #4EA796;
  opacity: 0.07;
  line-height: 1.15;
  pointer-events: none;
  user-select: none;
  letter-spacing: -6px;
}

.services_page .title_label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4EA796;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-left: 3px solid #4EA796;
  border-bottom: 1px solid rgba(78, 167, 150, 0.3);
  padding: 0 0 0 8px;
}

.services_page .title_heading {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
}

.services_page .title_heading span {
  color: #4EA796;
}

.services_page .title_desc {
  font-size: 16px;
  line-height: 1.65;
  color: #ADCCBD;
  margin: 0;
  max-width: 460px;
}

.services_page .title_image_col {
  flex: 0 0 440px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
  animation: bounce_drop 0.65s 0.08s ease-out both;
}

.services_page .title_image_col img {
  width: 440px;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services_page .title_image_col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(27, 42, 39, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 10%, rgba(27, 42, 39, 0.45) 0%, transparent 60%);
  pointer-events: none;
}

.services_page .divider_band {
  background: #4EA796;
  height: 4px;
  width: 100%;
}

.services_page .offerings_section {
  background: #EBF2F1;
  padding: 80px 24px;
  position: relative;
}

.services_page .offerings_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 0 Q30 10 20 20 Q10 10 20 0Z' fill='none' stroke='%234EA796' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Cpath d='M0 20 Q10 30 0 40 Q-10 30 0 20Z' fill='none' stroke='%234EA796' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Cpath d='M40 20 Q50 30 40 40 Q30 30 40 20Z' fill='none' stroke='%234EA796' stroke-width='0.5' stroke-opacity='0.12'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}

.services_page .offerings_top {
  max-width: 1140px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.services_page .offerings_heading {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  color: #1b2a27;
  letter-spacing: -0.025em;
  margin: 0;
}

.services_page .offerings_sub {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5550;
  margin: 0;
  max-width: 340px;
  text-align: right;
}

.services_page .offerings_grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.services_page .offering_shared_top {
  grid-column: 1 / -1;
  background: #4EA796;
  border-radius: 4px 4px 0 0;
  height: 4px;
}

.services_page .offering_card {
  background: #ffffff;
  border-radius: 0 0 4px 4px;
  padding: 40px 24px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
  border-top: 1px solid #ADCCBD;
}

.services_page .offering_card:hover {
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
  transform: translateY(-2px);
}

.services_page .offering_number {
  font-size: 38px;
  font-weight: 900;
  color: #4EA796;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.services_page .offering_name {
  font-size: 21px;
  font-weight: 800;
  color: #1b2a27;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.services_page .offering_text {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5550;
  margin: 0;
}

.services_page .offering_metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #EBF2F1;
}

.services_page .metric_value {
  font-size: 21px;
  font-weight: 900;
  color: #4EA796;
  line-height: 1.15;
}

.services_page .metric_arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #4EA796;
  display: inline-block;
  flex-shrink: 0;
}

.services_page .metric_label {
  font-size: 13px;
  color: #3a5550;
  line-height: 1.15;
}

.services_page .divider_thin {
  background: linear-gradient(to right, #4EA796, transparent);
  height: 2px;
  width: 100%;
}

.services_page .detail_section {
  background: #ffffff;
  padding: 80px 24px;
}

.services_page .detail_grid {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.services_page .detail_image_col {
  flex: 0 0 480px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
}

.services_page .detail_image_col img {
  width: 480px;
  height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services_page .detail_image_col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(27, 42, 39, 0.4) 0%, transparent 55%);
  pointer-events: none;
}

.services_page .detail_image_badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #4EA796;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 1px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  z-index: 1;
}

.services_page .detail_text_col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services_page .detail_eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #4EA796;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services_page .detail_heading {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  color: #1b2a27;
  letter-spacing: -0.025em;
  margin: 0;
}

.services_page .detail_paragraph {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5550;
  margin: 0;
}

.services_page .detail_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services_page .detail_list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.65;
  color: #1b2a27;
}

.services_page .list_marker {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #4EA796;
  border-radius: 1px;
  margin-top: 9px;
}

.services_page .detail_link_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.services_page .detail_link {
  font-size: 16px;
  font-weight: 700;
  color: #4EA796;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.services_page .detail_link::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 2px;
  background: #4EA796;
  transition: left 0.12s ease-out, right 0.12s ease-out;
}

.services_page .detail_link:hover::after {
  left: 0;
  right: 0;
}

.services_page .detail_link:hover {
  color: #1b2a27;
}

.services_page .link_arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #4EA796;
  display: inline-block;
}

@media (max-width: 1024px) {
  .services_page .title_band_grid {
    gap: 40px;
  }

  .services_page .title_image_col {
    flex: 0 0 340px;
  }

  .services_page .title_image_col img {
    width: 340px;
    height: 380px;
  }

  .services_page .title_heading {
    font-size: 38px;
  }

  .services_page .offerings_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services_page .offering_shared_top {
    grid-column: 1 / -1;
  }

  .services_page .detail_grid {
    gap: 40px;
  }

  .services_page .detail_image_col {
    flex: 0 0 340px;
  }

  .services_page .detail_image_col img {
    width: 340px;
    height: 400px;
  }
}

@media (max-width: 640px) {
  .services_page .title_band {
    padding: 40px 24px;
  }

  .services_page .title_band_grid {
    flex-direction: column;
    gap: 24px;
  }

  .services_page .title_image_col {
    flex: 0 0 auto;
    width: 100%;
  }

  .services_page .title_image_col img {
    width: 100%;
    height: 260px;
  }

  .services_page .title_heading {
    font-size: 28px;
  }

  .services_page .title_faded_number {
    font-size: 100px;
  }

  .services_page .offerings_section {
    padding: 40px 24px;
  }

  .services_page .offerings_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .services_page .offerings_sub {
    text-align: left;
    max-width: 100%;
  }

  .services_page .offerings_heading {
    font-size: 28px;
  }

  .services_page .offerings_grid {
    grid-template-columns: 1fr;
  }

  .services_page .offering_shared_top {
    grid-column: 1 / -1;
  }

  .services_page .detail_section {
    padding: 40px 24px;
  }

  .services_page .detail_grid {
    flex-direction: column;
    gap: 24px;
  }

  .services_page .detail_image_col {
    flex: 0 0 auto;
    width: 100%;
  }

  .services_page .detail_image_col img {
    width: 100%;
    height: 280px;
  }

  .services_page .detail_heading {
    font-size: 28px;
  }
}

.press-release-page {
  background: #ffffff;
  overflow-x: clip;
}

.press-release-page *,
.press-release-page *::before,
.press-release-page *::after {
  box-sizing: border-box;
}

.press-release-page ::selection {
  background: #4EA796;
  color: #ffffff;
}

.press-release-page .page-limiter {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.press-release-page .release-lead {
  padding: 80px 0 40px;
  background: #ffffff;
  position: relative;
}

.press-release-page .release-lead::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 48px;
  background: #EBF2F1;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 0;
}

.press-release-page .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.press-release-page .lead-text-column {
  padding-top: 40px;
  padding-bottom: 24px;
}

.press-release-page .release-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4EA796;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 3px solid #4EA796;
  padding-bottom: 4px;
}

.press-release-page .lead-heading {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1b2d2a;
  margin: 0 0 24px;
}

.press-release-page .lead-heading .marker-phrase {
  background: linear-gradient(180deg, transparent 55%, rgba(78, 167, 150, 0.38) 55%);
  display: inline;
}

.press-release-page .lead-subtext {
  font-size: 16px;
  line-height: 1.65;
  color: #2e4a45;
  margin: 0 0 8px;
}

.press-release-page .lead-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.press-release-page .meta-item {
  font-size: 13px;
  color: #4EA796;
  font-weight: 600;
}

.press-release-page .meta-divider {
  width: 1px;
  height: 16px;
  background: #ADCCBD;
}

.press-release-page .lead-image-column {
  position: relative;
}

.press-release-page .image-frame {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px 0 rgba(78, 167, 150, 0.12);
}

.press-release-page .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) contrast(1.05);
}

.press-release-page .image-dashed-border {
  position: absolute;
  top: -16px;
  right: -16px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 2px dashed #ADCCBD;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.press-release-page .image-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #4EA796;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 1px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  z-index: 2;
}

.press-release-page .releases-archive {
  padding: 80px 0;
  background: #EBF2F1;
  position: relative;
  z-index: 1;
}

.press-release-page .archive-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.press-release-page .archive-heading {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #1b2d2a;
  margin: 0;
}

.press-release-page .archive-description {
  font-size: 16px;
  line-height: 1.65;
  color: #2e4a45;
  max-width: 340px;
  margin: 0;
  text-align: right;
}

.press-release-page .releases-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.press-release-page .release-entry {
  background: #ffffff;
  border-radius: 4px;
  padding: 40px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: start;
  box-shadow: 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  border-top: 3px solid transparent;
  transition: border-color 0.1s ease-out, box-shadow 0.12s ease-out;
}

.press-release-page .release-entry:hover {
  border-color: #4EA796;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
}

.press-release-page .entry-number {
  font-size: 66px;
  line-height: 1.15;
  font-weight: 900;
  color: #ADCCBD;
  letter-spacing: -0.04em;
  line-height: 1;
}

.press-release-page .entry-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-release-page .entry-category {
  font-size: 13px;
  font-weight: 700;
  color: #4EA796;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.press-release-page .entry-title {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b2d2a;
  letter-spacing: -0.02em;
  margin: 0;
}

.press-release-page .entry-title span {
  transition: color 0.08s linear;
}

.press-release-page .entry-title:hover span {
  color: #4EA796;
}

.press-release-page .entry-summary {
  font-size: 16px;
  line-height: 1.65;
  color: #2e4a45;
  margin: 0;
}

.press-release-page .entry-date-block {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.press-release-page .entry-date {
  font-size: 13px;
  color: #4EA796;
  font-weight: 600;
}

.press-release-page .entry-read-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1b2d2a;
  text-decoration: none;
  border-bottom: 2px solid #4EA796;
  padding-bottom: 1px;
  transition: color 0.1s ease-out;
}

.press-release-page .entry-read-link:hover {
  color: #4EA796;
}

.press-release-page .funnel-metrics {
  padding: 80px 0;
  background: #1b2d2a;
  position: relative;
  overflow: hidden;
}

.press-release-page .funnel-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #EBF2F1;
  clip-path: ellipse(55% 100% at 50% 0%);
}

.press-release-page .funnel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.press-release-page .funnel-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.press-release-page .funnel-heading {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #EBF2F1;
  margin: 0;
}

.press-release-page .funnel-body {
  font-size: 16px;
  line-height: 1.65;
  color: #ADCCBD;
  margin: 0;
}

.press-release-page .funnel-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.press-release-page .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.press-release-page .stat-number {
  font-size: 38px;
  font-weight: 900;
  color: #4EA796;
  letter-spacing: -0.03em;
  min-width: 100px;
  line-height: 1.15;
}

.press-release-page .stat-label {
  font-size: 16px;
  color: #EBF2F1;
  line-height: 1.65;
}

.press-release-page .funnel-chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.press-release-page .funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.press-release-page .funnel-bar {
  height: 48px;
  background: linear-gradient(90deg, #4EA796, rgba(78, 167, 150, 0.3));
  border-radius: 1px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: opacity 0.1s ease-out;
}

.press-release-page .funnel-bar:hover {
  opacity: 0.85;
}

.press-release-page .funnel-bar-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.press-release-page .funnel-connector {
  width: 2px;
  height: 8px;
  background: #ADCCBD;
}

.press-release-page .funnel-bar.level-1 {
  width: 100%;
}

.press-release-page .funnel-bar.level-2 {
  width: 82%;
}

.press-release-page .funnel-bar.level-3 {
  width: 65%;
}

.press-release-page .funnel-bar.level-4 {
  width: 48%;
}

@keyframes border-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(78, 167, 150, 0.08), 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(78, 167, 150, 0.18), 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(78, 167, 150, 0.08), 0 2px 4px 0 rgba(78, 167, 150, 0.08);
  }
}

.press-release-page .glow-pulse {
  animation: border-glow 2.8s ease-out infinite;
}

@media (max-width: 1024px) {
  .press-release-page .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .press-release-page .lead-heading {
    font-size: 38px;
  }

  .press-release-page .lead-image-column {
    display: none;
  }

  .press-release-page .release-entry {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .press-release-page .entry-date-block {
    grid-column: 2;
    text-align: left;
  }

  .press-release-page .funnel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .press-release-page .archive-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .press-release-page .archive-description {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .press-release-page .lead-heading {
    font-size: 28px;
  }

  .press-release-page .release-entry {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .press-release-page .entry-number {
    font-size: 38px;
  }

  .press-release-page .entry-date-block {
    grid-column: 1;
  }

  .press-release-page .archive-heading {
    font-size: 28px;
  }

  .press-release-page .funnel-heading {
    font-size: 28px;
  }

  .press-release-page .lead-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .press-release-page .meta-divider {
    display: none;
  }

  .press-release-page .releases-archive {
    padding: 40px 0;
  }

  .press-release-page .funnel-metrics {
    padding: 40px 0;
  }

  .press-release-page .release-lead {
    padding: 40px 0 24px;
  }
}

.success_page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background-color: #EBF2F1;
}

.success_page .success_card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px 0 rgba(78, 167, 150, 0.10);
  padding: 80px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  border-top: 4px solid #4EA796;
}

.success_page .success_icon_wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #EBF2F1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px auto;
}

.success_page .success_icon_wrapper svg {
  display: block;
}

.success_page .success_heading {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #1b2d2a;
  margin: 0 0 24px 0;
}

.success_page .success_message {
  font-size: 16px;
  line-height: 1.65;
  color: #2e4a44;
  margin: 0 0 8px 0;
}

.success_page .success_note {
  font-size: 13px;
  line-height: 1.65;
  color: #4EA796;
  margin: 0 0 40px 0;
}

.success_page .success_divider {
  width: 48px;
  height: 1px;
  background: #ADCCBD;
  margin: 0 auto 40px auto;
  border: none;
}

.success_page .success_contact_label {
  font-size: 13px;
  line-height: 1.65;
  color: #5a7a74;
  margin: 0 0 8px 0;
}

.success_page .success_email_link {
  font-size: 16px;
  font-weight: 700;
  color: #4EA796;
  text-decoration: none;
  transition: color 0.1s ease-out;
  border-bottom: 1px solid #ADCCBD;
  padding-bottom: 1px;
}

.success_page .success_email_link:hover {
  color: #2e7a6a;
  border-bottom-color: #4EA796;
}

.success_page .success_back_link {
  display: inline-block;
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
  background: #4EA796;
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #4EA796;
  transition: background 0.12s ease-out, color 0.12s ease-out;
}

.success_page .success_back_link:hover {
  background: #ffffff;
  color: #4EA796;
}

.success_page .success_back_link:focus {
  outline: 2px solid #1b2d2a;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .success_page {
    padding: 40px 24px;
  }

  .success_page .success_card {
    padding: 40px 24px;
  }

  .success_page .success_heading {
    font-size: 21px;
  }
}