 .ct-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #fff;
  }

  /* ---- HERO BAND ---- */
  .ct-hero {
    position: relative;
    padding: 120px 8% 80px;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* .ct-hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60,190,113,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .ct-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,125,46,0.08) 0%, transparent 70%);
    pointer-events: none;
  } */

  .ct-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }

  .ct-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(60,190,113,0.12);
    border: 1px solid rgba(60,190,113,0.3);
    color: black;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
  }

  .ct-hero__tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #3cbe71;
    animation: ct-pulse 2s ease-in-out infinite;
  }

  @keyframes ct-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .ct-hero h1 {
    font-family: "Julius Sans One", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    color:black;
    line-height: 1.0;
    text-align: left;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }

  .ct-hero h1 em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color:black;
  }

  .ct-hero__sub {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color:black;
    line-height: 1.8;
    text-align: left;
    max-width: 480px;
  }

  /* ---- QUICK CONTACT STRIPS ---- */
  .ct-strips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
  }

  .ct-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid #e8e8e8;
    text-decoration: none;
    transition: background 0.2s;
    background: #fff;
  }

  .ct-strip:last-child { border-right: none; }

  .ct-strip:hover { background: #f7fdf8; }

  .ct-strip__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #f0faf3;
    border: 1px solid #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: background 0.2s, border-color 0.2s;
  }

  .ct-strip:hover .ct-strip__icon {
    background: #2a7d2e;
    border-color: #2a7d2e;
  }

  .ct-strip:hover .ct-strip__icon i { color: #fff; }

  .ct-strip__icon i {
    color: #2a7d2e;
    font-size: 16px;
    transition: color 0.2s;
  }

  .ct-strip__label {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
  }

  .ct-strip__value {
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a1a;
  }

  /* ---- MAIN CONTENT AREA ---- */
  .ct-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }

  /* ---- LEFT: FORM ---- */
  .ct-form-side {
    padding: 70px 8% 70px 8%;
    box-sizing: border-box;
    border-right: 1px solid #e8e8e8;
  }

  .ct-form-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2a7d2e;
    margin-bottom: 12px;
    display: block;
  }

  .ct-form-title {
    font-family: "Julius Sans One", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: left;
    line-height: 1.1;
  }

  .ct-form-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 36px;
  }

  /* Topic pills */
  .ct-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .ct-topic {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    background: #f5f5f5;
    border: 1.5px solid #e0e0e0;
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    user-select: none;
  }

  .ct-topic:hover,
  .ct-topic.ct-active {
    background: #2a7d2e;
    border-color: #2a7d2e;
    color: #fff;
  }

  /* Form fields */
  .ct-form { display: flex; flex-direction: column; gap: 18px; }

  .ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .ct-field { display: flex; flex-direction: column; gap: 6px; }

  .ct-field label {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444;
  }

  .ct-field input,
  .ct-field textarea,
  .ct-field select {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: #fafafa;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
  }

  .ct-field input:focus,
  .ct-field textarea:focus,
  .ct-field select:focus {
    border-color: #2a7d2e;
    background: #fff;
  }

  .ct-field textarea { resize: vertical; min-height: 120px; }

  .ct-field input::placeholder,
  .ct-field textarea::placeholder { color: #bbb; }

  .ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2a7d2e;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    margin-top: 6px;
  }

  .ct-submit:hover { background: #1f5e22; transform: translateY(-2px); }
  .ct-submit:active { transform: translateY(0); }

  .ct-submit i { font-size: 14px; transition: transform 0.2s; }
  .ct-submit:hover i { transform: translateX(4px); }

  /* Success state */
  .ct-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 16px;
  }

  .ct-success__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #f0faf3;
    border: 2px solid #2a7d2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }

  .ct-success h3 {
    font-family: "Julius Sans One", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
  }

  .ct-success p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.7;
    max-width: 320px;
  }

  /* ---- RIGHT: INFO PANEL ---- */
  .ct-info-side {
    background: #f7fdf8;
    padding: 70px 8%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Who to reach */
  .ct-reach-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2a7d2e;
    margin-bottom: 18px;
    display: block;
  }

  .ct-person-cards { display: flex; flex-direction: column; gap: 14px; }

  .ct-person {
    background: #fff;
    border: 1px solid #e0f0e2;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .ct-person:hover { box-shadow: 0 8px 24px rgba(42,125,46,0.08); transform: translateY(-2px); }

  .ct-person__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a7d2e, #3cbe71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Julius Sans One", sans-serif;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .ct-person__name {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
  }

  .ct-person__role {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #888;
  }

  .ct-person__email {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #2a7d2e;
    text-decoration: none;
    margin-top: 3px;
    display: block;
  }

  .ct-person__email:hover { text-decoration: underline; }

  /* Office info */
  .ct-office {
    background: #fff;
    border: 1px solid #e0f0e2;
    border-radius: 12px;
    padding: 22px 20px;
  }

  .ct-office__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .ct-office__icon {
    width: 36px; height: 36px;
    background: #f0faf3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ct-office__icon i { color: #2a7d2e; font-size: 15px; }

  .ct-office__name {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  .ct-office__details {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
  }

  .ct-office__hours {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
  }

  .ct-office__hours span:first-child { color: #888; }
  .ct-office__hours span:last-child { color: #2a7d2e; font-weight: 700; }

  /* Map embed */
  .ct-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0f0e2;
    height: 200px;
  }

  .ct-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* Social row */
  .ct-social {
    display: flex;
    gap: 10px;
  }

  .ct-social__btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0f0e2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2a7d2e;
    font-size: 16px;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  }

  .ct-social__btn:hover {
    background: #2a7d2e;
    border-color: #2a7d2e;
    color: #fff;
    transform: translateY(-2px);
  }

  /* ---- DONATE BAND ---- */
  .ct-donate {
    background: #0d1f10;
    padding: 60px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }

  .ct-donate__text h2 {
    font-family: "Julius Sans One", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: #fff;
    text-align: left;
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .ct-donate__text p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    text-align: left;
    max-width: 440px;
    line-height: 1.7;
  }

  .ct-donate__btn {
    background: #3cbe71;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .ct-donate__btn:hover { background: #2a7d2e; transform: translateY(-2px); }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    .ct-strips { grid-template-columns: 1fr; }
    .ct-strip { border-right: none; border-bottom: 1px solid #e8e8e8; }
    .ct-strip:last-child { border-bottom: none; }
    .ct-main { grid-template-columns: 1fr; }
    .ct-form-side { border-right: none; border-bottom: 1px solid #e8e8e8; }
  }

  @media (max-width: 600px) {
    .ct-hero { padding: 100px 24px 60px; }
    .ct-form-side, .ct-info-side { padding: 50px 24px; }
    .ct-field-row { grid-template-columns: 1fr; }
    .ct-donate { padding: 50px 24px; flex-direction: column; }
    .ct-donate__btn { width: 100%; text-align: center; }
  }

  .ct-hero {
  position: relative;
  padding: 120px 8% 80px;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* .ct-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.65) 45%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 1;
} */

.ct-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}