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

    :root {
      --navy: #001a35;
      --navy-mid: #002d5c;
      --navy-light: #0a4a7d;
      --sage: #4a8a72;
      --sage-light: #5b9a80;
      --sage-pale: #edf6f1;
      --white: #fbfffb;
      --surface: #f2f5f3;
      --mist: #e4eeea;
      --text: #001a35;
      --text-sec: #3d4d45;
      --text-ter: #4e7060;
      --border: rgba(0,26,53,.08);
      --border-med: rgba(0,26,53,.14);
      --shadow-sm: 0 1px 3px rgba(0,26,53,.06), 0 1px 2px rgba(0,26,53,.04);
      --shadow-md: 0 4px 12px rgba(0,26,53,.08), 0 2px 4px rgba(0,26,53,.05);
      --r-btn: 8px;
      --r-card: 8px;
      --r-sec: 14px;
      --t-fast: 150ms ease;
      --t-normal: 250ms ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Cairo', sans-serif;
      background: var(--white);
      color: var(--text);
      direction: rtl;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
    }

    
    

    .page-hero {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding: 128px 48px 72px;
      border-bottom: .5px solid rgba(251,255,251,.08);
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(74,138,114,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,138,114,.04) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
      gap: 56px;
      align-items: end;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .hero-eyebrow-line {
      width: 24px;
      height: 1.5px;
      background: var(--sage);
      flex-shrink: 0;
    }
    .hero-eyebrow-text {
      font-size: 11px;
      font-weight: 700;
      color: rgba(251,255,251,.45);
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 18px;
    }
    h1 .accent { color: var(--sage); font-weight: 300; }
    .hero-copy {
      max-width: 610px;
      font-size: 15px;
      font-weight: 300;
      color: rgba(251,255,251,.68);
      line-height: 1.9;
    }
    .hero-panel {
      border: .5px solid rgba(251,255,251,.1);
      border-radius: var(--r-card);
      background: rgba(0,45,92,.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      overflow: hidden;
    }
    .hero-panel-row {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: .5px solid rgba(251,255,251,.08);
      align-items: center;
    }
    .hero-panel-row:last-child { border-bottom: none; }
    .hero-panel-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(74,138,114,.15);
      border: .5px solid rgba(74,138,114,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage-light);
      font-size: 15px;
      font-weight: 900;
    }
    .hero-panel-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 2px;
    }
    .hero-panel-text {
      font-size: 11px;
      color: rgba(251,255,251,.45);
      line-height: 1.55;
    }

    .faq-section {
      background: var(--surface);
      padding: 64px 48px 72px;
    }
    .faq-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 260px minmax(0, 1fr);
      gap: 44px;
      align-items: start;
    }
    .side {
      position: sticky;
      top: 88px;
    }
    .sec-label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .sec-label-line {
      width: 20px;
      height: 1.5px;
      background: var(--sage);
      flex-shrink: 0;
    }
    .sec-label-text {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-ter);
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .side h2 {
      font-size: 24px;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .side p {
      font-size: 13px;
      color: var(--text-ter);
      line-height: 1.8;
      margin-bottom: 22px;
    }
    .category-nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .category-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 12px;
      border-radius: var(--r-btn);
      background: var(--white);
      border: .5px solid var(--border);
      color: var(--text-sec);
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
    }
    .category-nav a:hover {
      color: var(--navy);
      border-color: rgba(74,138,114,.3);
      transform: translateY(-1px);
    }
    .category-nav span {
      color: var(--sage);
      font-size: 13px;
    }

    .faq-group {
      margin-bottom: 34px;
      scroll-margin-top: 88px;
    }
    .faq-group:last-child { margin-bottom: 0; }
    .group-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 12px;
    }
    .group-head h2 {
      font-size: 20px;
      color: var(--navy);
      line-height: 1.3;
    }
    .group-head p {
      font-size: 12px;
      color: var(--text-ter);
      line-height: 1.7;
      max-width: 430px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
    }
    details {
      border-bottom: 0.5px solid var(--border-med);
      background: transparent;
      overflow: hidden;
    }
    summary {
      list-style: none;
      cursor: pointer;
      padding: 14px 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      text-align: right;
      font-family: 'Cairo', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.4;
      transition: color var(--t-fast);
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: none;
    }
    .faq-acc-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(0,26,53,.07);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--t-fast);
    }
    .faq-acc-icon svg {
      width: 10px;
      height: 10px;
      transition: transform var(--t-normal);
    }
    details[open] .faq-acc-icon {
      background: var(--sage);
      color: var(--white);
    }
    details[open] .faq-acc-icon svg {
      stroke: var(--white);
      transform: rotate(45deg);
    }
    summary:hover {
      color: var(--sage);
    }
    .answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 300ms ease, opacity 200ms ease;
      padding: 0;
      color: var(--text-sec);
      font-size: 12px;
      line-height: 1.8;
    }
    details[open] .answer {
      max-height: 220px;
      opacity: 1;
      padding: 0 16px 16px;
    }
    .answer p { margin-bottom: 10px; }
    .answer p:last-child { margin-bottom: 0; }
    .answer ul {
      list-style: none;
      display: grid;
      gap: 6px;
      margin-top: 8px;
    }
    .answer li {
      position: relative;
      padding-right: 14px;
    }
    .answer li::before {
      content: '';
      position: absolute;
      right: 0;
      top: .85em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--sage);
    }
    .note {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: var(--r-btn);
      background: var(--sage-pale);
      border-right: 2px solid var(--sage);
      color: var(--text-ter);
      font-size: 12px;
      line-height: 1.7;
    }

    .cta-sec {
      background: var(--navy);
      padding: 68px 48px;
      text-align: center;
      border-top: .5px solid rgba(251,255,251,.06);
    }
    .cta-sec-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-sec h2 {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .cta-sec h2 .accent { color: var(--sage); font-weight: 300; }
    .cta-sec p {
      font-size: 14px;
      color: rgba(251,255,251,.52);
      line-height: 1.8;
      margin-bottom: 30px;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-primary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--r-btn);
      text-decoration: none;
      transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sage);
      color: var(--white);
      padding: 11px 24px;
      border: none;
    }
    .btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); }
    .btn-ghost {
      color: rgba(251,255,251,.68);
      padding: 10px 20px;
      border: .5px solid rgba(251,255,251,.16);
    }
    .btn-ghost:hover {
      color: var(--white);
      border-color: rgba(251,255,251,.28);
      transform: translateY(-1px);
    }

    
    @media (max-width: 900px) {
      .page-hero { padding: 112px 24px 56px; }
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .faq-section { padding: 52px 24px 60px; }
      .faq-inner { grid-template-columns: 1fr; gap: 34px; }
      .side { position: static; }
      .category-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .group-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
      .cta-sec { padding: 60px 24px; }
    }

    @media (max-width: 560px) {
      .page-hero { padding: 96px 20px 44px; }
      h1 { font-size: 32px; }
      .hero-copy { font-size: 14px; }
      .hero-panel-row {
        grid-template-columns: 38px 1fr;
        padding: 14px;
      }
      .hero-panel-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
      }
      .faq-section { padding: 44px 20px 52px; }
      .category-nav { grid-template-columns: 1fr; }
      summary {
        padding: 15px 14px;
        font-size: 13px;
      }
      .answer {
        padding: 0 14px 16px;
        font-size: 12px;
      }
      .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }
      .btn-primary,
      .btn-ghost { width: 100%; }
      
    }
  