  /* ═══════════════════════════════════════
       RESET — scoped to .af-page
    ═══════════════════════════════════════ */
  .af-page *,
  .af-page *::before,
  .af-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* ═══════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════ */
  .af-page {
    --teal: #005d66;
    --dark: #0b3e4f;
    --cyan: #22d2df;
    --green: #5ecb9e;
    --white: #ffffff;
    --lighter: #f4f7f7;
    --light: #e2e2e2;
    --text: #1e2a2b;
    --muted: #4a6263;
    --r: 6px;

    font-family: 'Noto Sans Hebrew', 'Arial', sans-serif;
    font-weight: 300;
    direction: rtl;
    color: var(--text);
    background: #fff;
    /*overflow-x: hidden;*/
  }

  .af-text-center {
    text-align: center;
  }

  .af-color-primary {
    color: var(--teal);
  }

  .af-bgcolor-primary {
    background: var(--teal);
  }

  .af-color-cyan {
    color: var(--cyan);
  }

  .af-bgcolor-cyan {
    background: var(--cyan);
  }

  .af-kebab {
    margin: 10px 0px;
  }

  .af-kebab svg {
    height: 6px;
  }

  /* ═══════════════════════════════════════
       SHARED
    ═══════════════════════════════════════ */
  .af-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .af-section {
    padding: 80px 0;
  }

  .af-heading {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--teal);
    white-space: nowrap;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
  }

  .af-heading span {
    padding-left: 10px;
  }

  .af-heading:after {
    content: '';
    height: 1.5px;
    background-color: var(--teal);
    width: 100%;
  }

  .af-heading-line {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--cyan);
    border-radius: 2px;
    margin: 0 auto 48px;
  }

  .af-w-100 {
    width: 100%;
  }

  /* ═══════════════════════════════════════
       HERO  (= section "מי אנחנו")
    ═══════════════════════════════════════ */
  .af-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
  }

  .af-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  /* RTL: gradient is dense on the right (text side), fades to left (photo) */
  .af-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0, 38, 40, 0.97) 0%,
        rgba(0, 38, 40, 0.90) 20%,
        rgba(0, 38, 40, 0.55) 30%,
        rgba(0, 38, 40, 0.10) 100%);
  }

  .af-hero__overlay_bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 38, 40, 0.97) 0%,
        rgba(0, 38, 40, 0.90) 20%,
        rgba(0, 38, 40, 0.55) 30%,
        rgba(0, 38, 40, 0.10) 100%);
  }

  .af-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }

  .af-hero__logo {
    width: 100%;
    max-width: 320px;
  }

  .af-hero__tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--cyan);
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
  }

  .af-hero__title {
    font-size: 3.5em !important;
    font-weight: 300 !important;
    color: var(--white) !important;
    line-height: 1 !important;
    margin-bottom: 20px !important;
  }

  .af-hero__title em {
    color: var(--cyan) !important;
    font-style: normal !important;
  }

  .af-hero__desc {
    font-size: 1.8em !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.2 !important;
  }

  /* ═══════════════════════════════════════
       IN-PAGE NAVIGATION
    ═══════════════════════════════════════ */
  .af-nav {
    background: var(--lighter);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .af-nav__list {
    list-style: none;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0;
  }

  .af-nav__list a {
    display: block;
    padding: 16px 22px;
    font-size: 1em;
    font-weight: 300;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }

  .af-nav__list a:hover,
  .af-nav__list a.is-active {
    color: var(--teal);
    border-bottom-color: var(--teal);
    text-decoration: none !important;
  }

  .af-nav__list a.is-active {
    font-weight: 600;
  }


  /* ═══════════════════════════════════════
       about us
    ═══════════════════════════════════════ */
  .af-whois {
    background: var(--light);
  }

  .af-whois-img {
    position: relative;
    max-width: 90%;
  }

  .af-whois-img img {
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .af-whois-img:after {
    content: '';
    background-color: var(--dark);
    width: 20%;
    height: 20%;
    bottom: -5%;
    left: -5%;
    z-index: 1;
    position: absolute;
    border-radius: 2em;
  }

  .af-whois__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px 32px;
  }


  /* ═══════════════════════════════════════
       "מה אנחנו עושים?"  — 4 COLUMNS
    ═══════════════════════════════════════ */
  .af-what {
    background: var(--white);
  }

  .af-what__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
  }

  .af-what__item {}

  .af-what__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .af-what__icon img {
    max-width: 100%;
    max-height: 100%;
  }

  .af-what__title {
    font-size: 1.4em;
    font-weight: 300;
    color: var(--teal);
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .af-what__text {
    font-size: 1em;
    color: var(--muted);
    line-height: 1.4;
  }

  /* ═══════════════════════════════════════
       MEMBERS
    ═══════════════════════════════════════ */
  .af-members {
    position: relative;
    overflow: hidden;
  }

  .af-members__bg-deco {
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 380px;
    opacity: 0.05;
    pointer-events: none;
  }

  .af-members__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    position: relative;
    z-index: 1;
  }

  .af-member {
    text-align: center;
  }

  .af-member__ring {
    width: 150px;
    margin: 0 auto 12px;
  }

  .af-member__ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .af-member__name {
    font-size: 1em;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
  }

  .swiper-wrapper {
    padding-bottom: 30px !important;
  }

  .af-members__controls {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .af-members__playpause {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--teal);
    border-radius: 50%;
    background: transparent;
    color: var(--teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.2s;
  }

  .af-members__playpause:hover {
    background: var(--teal);
    color: var(--white);
  }

  .af-members__playpause svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .af-members__playpause .af-pp-icon--play {
    display: none;
  }

  .af-members__playpause .af-pp-icon--pause {
    display: block;
  }

  .af-members__playpause[aria-pressed="true"] .af-pp-icon--pause {
    display: none;
  }

  .af-members__playpause[aria-pressed="true"] .af-pp-icon--play {
    display: block;
  }

  /* ═══════════════════════════════════════
       ACTIVITIES
    ═══════════════════════════════════════ */
  .af-activities {
    background: var(--white);
  }

  .af-activities__featured {
    /*
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
      align-items: stretch;
      */
    margin-bottom: 40px;
  }


  .af-activities__photo {
    display: block;
    width: 100%;
    height: 480px;
    /* תכוון לפי העיצוב */
    overflow: hidden;
    border-radius: 12px;
    max-width: 74% !important;
  }

  .af-activities__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .af-activities__photo img {
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: var(--r);
  }

  .af-activities__panel {
    max-width: 66%;
    background: var(--dark);
    border-radius: var(--r);
    padding: 100px 40px 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -80px;
    margin-right: auto;
  }

  .af-activities__panel-tag {
    font-size: 1em;
    color: var(--cyan);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .af-activities__panel-title, .af-activities__panel-title a {
    font-size: 1.1em;
    color: var(--cyan);
    line-height: 1.45;
    margin-bottom: 14px;
    font-weight: 700;
  }

  .af-activities__panel-text {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4
  }

  .af-activities__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-direction: column;
  }

  .af-activities__thumb {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    text-decoration: none;

  }

  .af-activities__thumb {
    display: block;
    overflow: hidden;
  }

  .af-activities__thumb-img {
    display: block;
    width: 100%;
    height: 260px;
    /* או כל גובה שאתה רוצה */
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .af-activities__thumb:hover img {
    transform: scale(1.05);
  }

  .af-activities__thumb-cap {
    background: var(--lighter);
    color: var(--teal);
    font-size: 1.2em;
    font-weight: 300;
    padding: 20px 12px 10px;
    line-height: 1.35;
    height: 100%;
  }

  .af-activities-more a {
    border-radius: var(--r);
    color: var(--teal) !important;
    text-decoration: none !important;
    margin-top: 20px;
    border: 1px solid var(--dark);
    padding: 10px;
    display: block;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .af-activities-more:hover {
    background-color: var(--light);
  }

  .af-kebab-ver {
    display: flex;
    align-items: center;
  }

  .af-kebab-ver svg {
    width: 5px;
  }

  /* ═══════════════════════════════════════
       NEWSLETTER / JOIN
    ═══════════════════════════════════════ */
  .af-join {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }

  .af-join label {
    font-size: 0.8em;
    color: white;
    font-weight: 300x;
  }

  .af-join__bg-left {
    position: absolute;
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    pointer-events: none;
    object-fit: cover;
    opacity: 0.5;
  }

  .af-join__inner {
    position: relative;
    z-index: 2;
    max-width: 50%;
  }

  .af-join__title {
    font-size: 1.5em !important;
    font-weight: 300 !important;
    color: var(--cyan) !important;
    margin-bottom: 10px !important;
  }

  .af-join__subtitle {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    line-height: 1.8;
  }

  .af-join__form_body {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .af-join__input {
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100rem;
    color: var(--teal);
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 0.92em;
    direction: rtl;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .af-join__input::placeholder {
    color: var(--dark);
  }

  .af-join__input:focus {
    border-color: var(--dark);
    color: var(--dark);
    background: rgba(255, 255, 255, 1);
  }

  .af-join__checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: right;
  }

  .af-join__checkbox {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--cyan);
    cursor: pointer;
  }

  .af-join__checkbox-label {
    font-weight: 300;
    font-size: 0.9em;
    color: var(--cyan);
    line-height: 1.6;
    cursor: pointer;
  }

  .af-join__btn {
    display: flex;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--cyan);
    color: var(--dark);
    font-size: 1em;
    font-weight: 700;
    border: none;
    border-radius: 100rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .af-join__btn-icon {
    width: 16px;
    margin-left: 15px;
  }

  .af-join__btn:hover {
    background: var(--teal) !important;
    text-decoration: none;
    color: white;
    transform: translateY(-1px);
  }

  .wpcf7 form .wpcf7-response-output {
    color: var(--dark);
    background: var(--lighter);
  }

  .wpcf7-not-valid-tip {
    background: var(--lighter);
    display: inline-block;
    margin: 2px 0;
    border-radius: 4px;
    padding: 2px;
  }

  /* ═══════════════════════════════════════
       FOOTER STRIP
    ═══════════════════════════════════════ */
  .af-footer {
    background: var(--dark);
    border-top: 1px solid rgba(34, 210, 223, 0.15);
    padding: 30px 0;
  }

  .af-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .af-footer__logo {
    width: 130px;
  }

  .af-footer__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
  }

  /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
  @media (max-width: 1024px) {
    .af-what__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px;
    }

    .af-members__grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .af-activities__thumbs {
      grid-template-columns: repeat(2, 1fr);
    }
      .af-hero__title {
    color: var(--dark) !important;
  }
  }

  @media (max-width: 768px) {
    .af-container {
      padding: 0 20px;
    }

    .af-section {
      padding: 56px 0;
    }

    .af-hero {
      min-height: 460px;
    }

    .af-hero__inner {
      padding: 56px 20px;
      flex-direction: column;
    }

    .af-hero__logo {
      width: 140px;
      margin-bottom: 24px;
    }

    .af-hero__title {
      font-size: 2em;
    }

    .af-hero__desc {
      font-size: 1em;
      line-height: 1.4;
    }

    .af-hero__overlay {
      display: none;
    }

    .af-hero__overlay_bottom {
      background: linear-gradient(to top,
          rgba(0, 38, 40, 0.97) 0%,
          rgba(0, 38, 40, 0.90) 20%,
          rgba(0, 38, 40, 0.55) 50%,
          rgba(0, 38, 40, 0.40) 100%);
    }

    .af-nav__list {
      flex-wrap: nowrap;
      overflow-x: auto;
    }

    .af-what__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .af-whois__text {
      font-size: 1em;
    }

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

    .af-activities__featured {
      grid-template-columns: 1fr;
    }

    .af-activities__thumbs {
      grid-template-columns: 1fr;
    }

    .af-join__inner {
      padding: 0 20px;
      max-width: 100%
    }

    .af-footer__inner {
      justify-content: center;
      text-align: center;
    }

    .af-whois__grid {
      grid-template-columns: 1fr;
    }

    .af-nav__list a {
      padding: 12px 14px;
      font-size: 1em;
    }

    .af-activities__thumb img {
      aspect-ratio: 9/6;
    }

    .af-activities__photo img {
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
      border-radius: var(--r);
    }

    .af-activities__panel {
      max-width: 90%;
    }

    .af-join__bg-left {
      object-fit: cover;
      opacity: 0.2;
      left: 0;
    }
  }

  @media (max-width: 480px) {
    .af-what__grid {
      grid-template-columns: 1fr;
    }

  }