@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-ext-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-ext-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-ext-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --pt-brand: #66bec2;
  --pt-dark: #247a7f;
  --pt-darkest: #1d656a;
  --pt-text: #173436;
  --pt-muted: #587173;
  --pt-surface: #f2fbfb;
  --pt-border: #cbeaec;
  --pt-warning: #fff8ea;
  --pt-white: #fff;
  --pt-shadow: 0 16px 44px rgba(36, 122, 127, 0.12);
  --pt-back-to-top-bg: var(--pt-brand);
  --pt-back-to-top-fg: var(--pt-text);
  --pt-back-to-top-border: rgba(23, 52, 54, 0.22);
  --pt-back-to-top-hover: var(--pt-dark);
  --pt-back-to-top-hover-fg: var(--pt-white);
  --pt-radius: 12px;
  --pt-header: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--pt-text);
  background: var(--pt-white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

a {
  color: var(--pt-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--pt-darkest);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 3px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--pt-header);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--pt-border);
  box-shadow: 0 4px 22px rgba(36, 122, 127, 0.08);
}

.site-header-inner {
  width: min(1280px, calc(100% - 64px));
  min-height: var(--pt-header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 58px;
  min-height: 58px;
}

.site-logo img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.desktop-nav a,
.language-switch {
  min-height: 48px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  color: var(--pt-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.language-switch:hover,
.language-switch:focus-visible {
  color: var(--pt-darkest);
  background: var(--pt-surface);
}

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

.language-switch {
  justify-content: center;
  min-width: 48px;
  color: var(--pt-text);
  background: var(--pt-brand);
}

.language-switch:hover,
.language-switch:focus-visible {
  color: var(--pt-white);
  background: var(--pt-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: var(--pt-surface);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: var(--pt-darkest);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: 100%;
  padding: 8px 16px 16px;
  background: var(--pt-white);
  border-top: 1px solid var(--pt-border);
}

.mobile-nav a {
  min-height: 48px;
  padding: 12px;
  display: flex;
  align-items: center;
  color: var(--pt-text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--pt-border);
}

.ct-section,
.ct-div-block,
.oxy-shortcode {
  min-width: 0;
}

.ct-section > .ct-section-inner-wrap {
  width: 100%;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: clamp(520px, 44vw, 680px);
  margin: 0;
  padding: 0;
  color: var(--pt-white);
  background: var(--pt-darkest);
  overflow: hidden;
}

.hero > .ct-section-inner-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 44vw, 680px);
  padding: 0;
  display: flex;
  justify-content: center;
}

.hero-media,
.hero-media.oxy-shortcode,
.hero-media .pt-picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 72, 76, 0.9) 0%, rgba(36, 122, 127, 0.7) 34%, rgba(102, 190, 194, 0.1) 68%, transparent 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 64px));
  max-width: none;
  margin: 0 auto;
  padding: 72px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-copy > * {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #e6fcfd;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--pt-white);
  font-size: clamp(48px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.hero-lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 1.6;
}

.button-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pt-button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pt-text);
  background: var(--pt-brand);
  border: 2px solid var(--pt-brand);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pt-button:hover {
  color: var(--pt-white);
  background: var(--pt-dark);
  border-color: var(--pt-dark);
  transform: translateY(-1px);
}

.pt-button-secondary {
  color: var(--pt-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
}

.pt-button-secondary:hover {
  color: var(--pt-darkest);
  background: var(--pt-white);
  border-color: var(--pt-white);
}

.post-hero-layout-section {
  width: 100%;
  padding: 32px 0 0;
  background: var(--pt-white);
}

.post-hero-layout-section > .ct-section-inner-wrap {
  width: min(1280px, calc(100% - 64px));
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  /* Oxygen's global stylesheet is printed after plugin styles and sets every
     section wrapper back to flex. This layout must remain a real grid. */
  display: grid !important;
  grid-template-columns: 144px minmax(0, 1fr);
  align-items: stretch !important;
  column-gap: 48px;
}

.rail-slot,
.rail-slot.oxy-shortcode,
.donation-rail {
  width: 100%;
  min-width: 0;
}

.donation-rail {
  position: relative;
  height: 100%;
  padding: 18px 12px 32px;
  background: linear-gradient(180deg, rgba(221, 245, 246, 0.96), rgba(242, 251, 251, 0.5));
  border-right: 1px solid var(--pt-border);
  border-radius: 12px 0 0 12px;
}

.donation-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.donation-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 22px;
  bottom: 22px;
  left: calc(50% - 1.5px);
  width: 3px;
  background: var(--pt-brand);
}

.donation-item {
  width: 100%;
  min-height: 86px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start;
}

.donation-marker {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pt-darkest);
  background: var(--pt-white);
  border: 3px solid var(--pt-brand);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.donation-amount {
  position: relative;
  z-index: 2;
  margin-top: 5px;
  padding: 1px 4px;
  color: var(--pt-text);
  background: #f2fbfb;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.donation-total {
  position: relative;
  z-index: 2;
  margin-top: 2px;
  padding: 16px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--pt-text);
  background: var(--pt-brand);
  border-radius: 12px;
}

.donation-total-year {
  font-size: 19px;
  font-weight: 700;
}

.donation-total-max {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.3;
}

.donation-total strong {
  margin-top: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.main-content {
  width: 100%;
  min-width: 0;
  padding-bottom: 96px;
}

.content-section {
  width: 100%;
  min-width: 0;
  padding: 72px 0;
  scroll-margin-top: 100px;
}

.content-section:first-child {
  padding-top: 32px;
}

.content-section + .content-section {
  border-top: 1px solid var(--pt-border);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--pt-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-title {
  width: 100%;
  max-width: 780px;
  margin: 0;
  color: var(--pt-text);
  font-size: clamp(34px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.section-lead {
  width: 100%;
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--pt-muted);
  font-size: 18px;
  line-height: 1.7;
}

.benefit-grid,
.trust-grid,
.why-grid,
.donor-grid,
.process-grid {
  width: 100%;
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

/* Oxygen appends a generic `.ct-div-block { display:flex; ... }` rule after
   this stylesheet. The component-qualified selectors preserve the intended
   layouts without depending on stylesheet order. */
.ct-div-block.benefit-grid,
.ct-div-block.trust-grid,
.ct-div-block.why-grid,
.ct-div-block.donor-grid,
.ct-div-block.process-grid,
.ct-div-block.contact-layout {
  display: grid;
}

.ct-div-block.button-row,
.ct-div-block.faq-teaser {
  flex-direction: row;
  align-items: center;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid,
.donor-grid,
.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pt-card,
.faq-card,
.form-card,
.legal-card {
  width: 100%;
  min-width: 0;
  padding: 26px;
  color: var(--pt-text);
  background: var(--pt-white);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  box-shadow: 0 8px 28px rgba(36, 122, 127, 0.08);
}

.benefit-card {
  min-height: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  background: var(--pt-surface);
}

.benefit-number {
  color: var(--pt-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.card-title {
  margin: 0 0 10px;
  color: var(--pt-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.card-text,
.pt-card p,
.pt-card li {
  margin: 0;
  color: var(--pt-muted);
  font-size: 16px;
  line-height: 1.65;
}

.pt-card ul,
.info-box ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.pt-card li + li,
.info-box li + li {
  margin-top: 8px;
}

.important-box,
.info-box,
.compensation-highlight,
.faq-teaser {
  width: 100%;
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--pt-radius);
}

.important-box,
.info-box {
  color: var(--pt-text);
  background: var(--pt-warning);
  border-left: 5px solid #c58f35;
}

.compensation-highlight {
  color: var(--pt-white);
  background: linear-gradient(135deg, var(--pt-darkest), var(--pt-dark));
  box-shadow: var(--pt-shadow);
}

.compensation-highlight .big-number {
  margin: 0;
  color: var(--pt-white);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
}

.compensation-highlight p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.94);
}

.compensation-timeline-slot {
  width: 100%;
  margin-top: 28px;
}

.compensation-cta-slot {
  width: 100%;
  margin-top: 24px;
}

.compensation-timeline {
  width: 100%;
  padding: 44px 24px;
  color: var(--pt-white);
  background: linear-gradient(145deg, var(--pt-darkest), var(--pt-dark));
  border-radius: 18px;
  box-shadow: var(--pt-shadow);
}

.compensation-timeline-inner {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
}

.compensation-timeline-inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 21px;
  bottom: 21px;
  left: 50%;
  width: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transform: translateX(-50%);
}

.compensation-timeline-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 34px;
}

.compensation-timeline-row.is-major {
  min-height: 54px;
}

.compensation-summary {
  position: relative;
  padding-right: 24px;
  font-size: 15px;
  line-height: 1.35;
  text-align: left;
}

.compensation-summary strong {
  display: block;
  margin-top: 2px;
  color: #c8f2f4;
  font-size: 18px;
  line-height: 1.25;
}

.compensation-price {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.35;
}

.compensation-timeline-row.is-major .compensation-price::before,
.compensation-timeline-row.is-major .compensation-summary:not(:empty)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%);
}

.compensation-timeline-row.is-major .compensation-price::before {
  left: 0;
}

.compensation-timeline-row.is-major .compensation-summary:not(:empty)::after {
  right: 0;
}

.compensation-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compensation-node span {
  display: flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  color: var(--pt-darkest);
  background: var(--pt-white);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

.compensation-timeline-row.is-major .compensation-node span {
  width: 42px;
  height: 42px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .compensation-timeline-slot {
    margin-top: 20px;
  }

  .compensation-timeline {
    padding: 28px 8px;
    border-radius: var(--pt-radius);
  }

  .compensation-timeline-inner::before {
    top: 16px;
    bottom: 16px;
    width: 3px;
  }

  .compensation-timeline-row {
    grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
    min-height: 29px;
  }

  .compensation-timeline-row.is-major {
    min-height: 48px;
  }

  .compensation-summary,
  .compensation-price {
    font-size: 11px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .compensation-summary {
    padding-right: 7px;
  }

  .compensation-summary strong {
    margin-top: 1px;
    font-size: 12px;
  }

  .compensation-price {
    padding-left: 7px;
  }

  .compensation-timeline-row.is-major .compensation-price::before,
  .compensation-timeline-row.is-major .compensation-summary:not(:empty)::after {
    width: 6px;
    height: 1px;
  }

  .compensation-timeline-row.is-major .compensation-node span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .compensation-node span {
    width: 10px;
    height: 10px;
  }
}

.faq-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
}

.faq-teaser h3,
.faq-teaser p {
  margin: 0;
}

.faq-teaser p {
  margin-top: 6px;
  color: var(--pt-muted);
}

.content-image,
.content-image.oxy-shortcode,
.content-image picture,
.content-image img {
  width: 100%;
}

.content-image {
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow);
}

.content-image img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Preserve every image and crop while giving the photography a cooler,
   lighter grade that harmonizes with the official #66bec2 logo. */
.hero-media img,
.content-image img {
  filter: saturate(0.84) hue-rotate(10deg) brightness(1.03);
}

.process-card {
  position: relative;
  padding-left: 76px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pt-text);
  background: var(--pt-brand);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.contact-layout {
  width: 100%;
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.contact-details {
  padding: 26px;
  color: var(--pt-white);
  background: var(--pt-darkest);
  border-radius: var(--pt-radius);
}

.contact-details a,
.contact-details span {
  display: block;
  color: var(--pt-white);
}

.contact-details .card-title {
  color: var(--pt-white);
}

.contact-details a {
  min-height: 44px;
  padding: 8px 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.form-card {
  padding: 30px;
  box-shadow: var(--pt-shadow);
}

.wpcf7-form {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.form-row {
  width: 100%;
  min-width: 0;
  margin: 0 0 18px;
}

.form-row label,
.form-consent {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--pt-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.form-row input,
.form-row textarea {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 12px 14px;
  color: var(--pt-text);
  background: var(--pt-white);
  border: 1px solid #a6d5d7;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-consent .wpcf7-list-item {
  margin: 0;
}

.form-consent label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-weight: 400;
}

.form-consent input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
}

.form-submit {
  margin-top: 24px;
}

.wpcf7-submit {
  min-height: 50px;
  padding: 13px 24px;
  color: var(--pt-text);
  background: var(--pt-brand);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.wpcf7-submit:hover {
  color: var(--pt-white);
  background: var(--pt-dark);
}

.pt-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #a32323;
  font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
}

.page-hero {
  width: 100%;
  min-height: 320px;
  color: var(--pt-white);
  background: linear-gradient(135deg, var(--pt-darkest), var(--pt-dark));
}

.page-hero > .ct-section-inner-wrap {
  width: min(960px, calc(100% - 48px));
  max-width: 960px;
  min-height: 320px;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-hero h1,
.page-hero .page-title {
  margin: 0;
  color: var(--pt-white);
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1.15;
}

.page-hero p,
.page-hero .page-lead {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.pt-role-faq .page-hero,
.pt-role-faq .page-hero > .ct-section-inner-wrap {
  min-height: 0;
}

.pt-role-faq .page-hero > .ct-section-inner-wrap {
  padding: 26px 0;
}

.faq-page,
.legal-page {
  width: 100%;
  padding: 72px 0 96px;
}

.faq-page > .ct-section-inner-wrap,
.legal-page > .ct-section-inner-wrap {
  width: min(960px, calc(100% - 48px));
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

.faq-group {
  width: 100%;
}

.faq-group + .faq-group {
  margin-top: 64px;
}

.faq-group-title {
  margin: 0 0 24px;
  color: var(--pt-text);
  font-size: 32px;
  line-height: 1.25;
}

.faq-card + .faq-card {
  margin-top: 16px;
}

.faq-question {
  margin: 0;
  color: var(--pt-text);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-answer {
  margin: 12px 0 0;
  color: var(--pt-muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-card + .legal-card {
  margin-top: 24px;
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.legal-card p,
.legal-card li {
  color: var(--pt-muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-notice {
  margin-bottom: 28px;
  padding: 18px 20px;
  background: var(--pt-warning);
  border-left: 5px solid #c58f35;
  border-radius: 8px;
}

.site-footer {
  width: 100%;
  color: rgba(255, 255, 255, 0.88);
  background: #1d656a;
}

.site-footer-inner {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span,
.link-button {
  min-height: 40px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.footer-nav a:hover,
.footer-contact a:hover,
.link-button:hover {
  color: var(--pt-white);
}

.link-button {
  border: 0;
  background: transparent;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-bottom {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--pt-text);
  background: var(--pt-white);
  border: 1px solid var(--pt-border);
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  font-size: 18px;
}

.cookie-banner p {
  margin: 5px 0 0;
  color: var(--pt-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-actions button {
  min-height: 46px;
  padding: 10px 16px;
  color: var(--pt-text);
  background: var(--pt-brand);
  border: 1px solid var(--pt-brand);
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .button-secondary {
  color: var(--pt-darkest);
  background: var(--pt-white);
}

.pt-back-to-top {
  display: none;
}

.pt-back-to-top[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .pt-back-to-top {
    position: fixed;
    z-index: 1500;
    right: calc(16px + env(safe-area-inset-right, 0px));
    bottom: var(--pt-back-to-top-bottom, calc(16px + env(safe-area-inset-bottom, 0px)));
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pt-back-to-top-fg);
    background: var(--pt-back-to-top-bg);
    border: 1px solid var(--pt-back-to-top-border);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(11, 85, 90, 0.22);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    cursor: pointer;
    transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
  }

  .pt-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .pt-back-to-top:hover,
  .pt-back-to-top:active {
    color: var(--pt-back-to-top-hover-fg);
    background: var(--pt-back-to-top-hover);
  }

  .pt-back-to-top svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .menu-open .pt-back-to-top {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .site-header-inner {
    width: calc(100% - 48px);
  }

  .desktop-nav a {
    padding-inline: 7px;
    font-size: 13px;
  }

  .post-hero-layout-section > .ct-section-inner-wrap {
    width: calc(100% - 48px);
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 28px;
  }

  .donation-marker {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .donation-item {
    min-height: 78px;
  }

  .donation-amount {
    font-size: 12px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  :root {
    --pt-header: 64px;
  }

  html {
    scroll-padding-top: 80px;
  }

  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .site-header-inner {
    width: calc(100% - 24px);
    min-height: 64px;
    gap: 10px;
  }

  .site-logo {
    min-width: 0;
  }

  .site-logo img {
    width: 48px;
    height: 48px;
  }

  .hero,
  .hero > .ct-section-inner-wrap {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .hero > .ct-section-inner-wrap {
    display: flex;
    flex-direction: column;
  }

  .hero::after {
    display: none;
  }

  .hero-media,
  .hero-media.oxy-shortcode,
  .hero-media .pt-picture,
  .hero-media img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero-media,
  .hero-media .pt-picture,
  .hero-media img {
    aspect-ratio: 3 / 2;
  }

  .hero-media img {
    object-fit: cover;
    object-position: right center;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 30px 18px 34px;
    background: var(--pt-darkest);
  }

  .hero-copy > * {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.17;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .button-row,
  .ct-div-block.button-row {
    width: 100%;
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .pt-button {
    width: 100%;
  }

  .post-hero-layout-section {
    padding-top: 20px;
  }

  .post-hero-layout-section > .ct-section-inner-wrap {
    width: calc(100% - 24px);
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 12px;
  }

  .donation-rail {
    padding: 12px 5px 20px;
    border-radius: 8px 0 0 8px;
  }

  .donation-list::before {
    left: calc(50% - 1px);
    width: 2px;
  }

  .donation-item {
    min-height: 70px;
  }

  .donation-marker {
    width: 32px;
    height: 32px;
    border-width: 2px;
    font-size: 12px;
  }

  .donation-amount {
    margin-top: 4px;
    padding-inline: 2px;
    font-size: 11px;
  }

  .donation-total {
    padding: 12px 3px;
  }

  .donation-total-year {
    font-size: 15px;
  }

  .donation-total-max {
    font-size: 9px;
  }

  .donation-total strong {
    font-size: 10px;
  }

  .main-content {
    padding-bottom: 64px;
  }

  .content-section {
    padding: 50px 0;
    scroll-margin-top: 80px;
  }

  .content-section:first-child {
    padding-top: 24px;
  }

  .section-kicker {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.23;
  }

  .section-lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
  }

  .benefit-grid,
  .trust-grid,
  .why-grid,
  .donor-grid,
  .process-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .benefit-grid,
  .trust-grid,
  .why-grid,
  .donor-grid,
  .process-grid,
  .contact-layout {
    margin-top: 24px;
  }

  .pt-card,
  .faq-card,
  .form-card,
  .legal-card {
    padding: 19px;
  }

  .benefit-card {
    min-height: 0;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text,
  .pt-card p,
  .pt-card li {
    font-size: 15px;
  }

  .important-box,
  .info-box,
  .compensation-highlight,
  .faq-teaser,
  .ct-div-block.faq-teaser {
    margin-top: 22px;
    padding: 19px;
  }

  .faq-teaser,
  .ct-div-block.faq-teaser {
    flex-direction: column;
    align-items: stretch;
  }

  .process-card {
    padding-left: 64px;
  }

  .step-number {
    top: 18px;
    left: 18px;
    width: 32px;
    height: 32px;
  }

  .form-card {
    padding: 18px;
  }

  .page-hero,
  .page-hero > .ct-section-inner-wrap {
    min-height: 280px;
  }

  .page-hero > .ct-section-inner-wrap,
  .faq-page > .ct-section-inner-wrap,
  .legal-page > .ct-section-inner-wrap {
    width: calc(100% - 32px);
  }

  .page-hero > .ct-section-inner-wrap {
    padding: 48px 0;
  }

  .page-hero h1,
  .page-hero .page-title {
    font-size: 34px;
  }

  .page-hero p,
  .page-hero .page-lead {
    font-size: 16px;
  }

  .pt-role-faq .page-hero > .ct-section-inner-wrap {
    padding: 22px 0;
  }

  .faq-page,
  .legal-page {
    padding: 52px 0 64px;
  }

  .faq-group + .faq-group {
    margin-top: 48px;
  }

  .faq-group-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 19px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .site-footer-inner {
    width: calc(100% - 32px);
    padding: 48px 0 34px;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    width: calc(100% - 32px);
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }
}

@media (max-width: 359px) {
  .site-logo img {
    width: 44px;
    height: 44px;
  }

  .post-hero-layout-section > .ct-section-inner-wrap {
    width: calc(100% - 16px);
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 8px;
  }

  .donation-rail {
    padding-inline: 3px;
  }

  .donation-amount {
    font-size: 10px;
  }

  .content-section {
    padding-block: 44px;
  }

  .section-title {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
