
:root{
  --blue:#0b3a78;
  --blue-2:#123f7a;
  --navy:#062c5f;
  --gold:#b88a22;
  --gold-2:#d4a53c;
  --theme-panel-primary:#2a5190;
  --theme-panel-primary-dark:#223f70;
  --theme-panel-primary-soft:#edf3fb;
  --theme-panel-accent:#cea46f;
  --theme-panel-accent-soft:#f7efe3;
  --theme-panel-ring:rgba(42,81,144,.16);
  --theme-panel-shadow:rgba(42,81,144,.22);
  --ink:#17213a;
  --muted:#6b7280;
  --line:#e7eaf0;
  --soft:#f7f8fb;
  --white:#fff;
  --shadow:0 16px 45px rgba(10,38,72,.10);
  --radius:18px;
  --pattern-image:url('pattern_1.png');
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Tahoma","Arial",sans-serif;
  direction:rtl;
  color:var(--ink);
  background:#fff;
  line-height:1.85;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1480px,calc(100% - 48px));margin:auto}
.skip-link{
  position:fixed;
  top:18px;
  right:18px;
  z-index:120;
  padding:10px 16px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-weight:800;
  transform:translateY(-180%);
  transition:transform .2s ease;
}
.skip-link:focus{transform:translateY(0)}
.site-main{position:relative}
.topbar{
  position:sticky;top:0;z-index:30;
  padding:14px 0 10px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.82));
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(226,232,240,.85);
}
.header-shell{display:grid;gap:14px}
.header-brandline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.header-brand-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  flex:1 1 auto;
}
.header-login{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e8ecf3;
  color:#0e2f5f;
  font-size:15px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(10,38,72,.06);
}
.header-login__icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f6f8fb;
  color:var(--blue);
}
.header-login__icon svg{
  width:16px;
  height:16px;
}
.logo{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}
.logo img{
  width:400px;
  height:90px;
  object-fit:contain;
}
.nav-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:78px;
  padding:0 14px 0 18px;
  background:rgba(255,255,255,.98);
  border:1px solid #eef1f5;
  border-radius:28px;
  box-shadow:0 18px 40px rgba(10,38,72,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px 30px;
  flex:1 1 auto;
  flex-wrap:wrap;
  font-weight:800;
  font-size:16px;
  color:#23324f;
}
.nav a{
  position:relative;
  padding:14px 0;
  line-height:1.45;
  transition:color .2s ease;
}
.nav a.active,.nav a:hover{color:var(--blue)}
.nav a.active:after,.nav a:hover:after{
  content:"";
  position:absolute;
  right:0;
  bottom:6px;
  width:100%;
  height:3px;
  background:var(--gold);
  border-radius:999px;
}
.actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  flex:0 0 auto;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  border-radius:8px;padding:11px 22px;font-weight:800;font-size:14px;border:1px solid transparent;
  transition:.2s ease;cursor:pointer;
}
.btn-blue{background:linear-gradient(135deg,#123f7a,#0a2f63);color:#fff;box-shadow:0 10px 26px rgba(11,58,120,.18)}
.btn-blue:hover{background:#092f62;transform:translateY(-1px)}
.btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-2));color:#fff;box-shadow:0 10px 22px rgba(184,138,34,.22)}
.btn-teal{background:linear-gradient(135deg,#cea46f,#b7983a);color:#fff;box-shadow:0 12px 28px rgba(53,139,125,.24)}
.btn-teal:hover{background:#cea46f;transform:translateY(-1px)}
.btn-outline{background:#fff;color:var(--blue);border-color:#ccd8e9}
.btn-light{background:#f1f4f8;color:var(--blue)}
.actions .btn{
  min-height:40px;
  padding:0 26px;
  border-radius:999px;
  font-size:16px;
  font-weight:900;
  white-space:nowrap;
}
.header-home-icon{
  width:auto;
  min-width:104px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:8px;
  background:#f5f6f8;
  color:#2a3b5d;
  border:1px solid #ebedf2;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.88);
  white-space:nowrap;
}
.header-home-icon svg{
  width:20px;
  height:20px;
  flex:0 0 auto;
}
.nav .header-home-icon{
  padding:0;
}
.nav .header-home-icon.active,
.nav .header-home-icon:hover{
  background:#eef3f9;
  border-color:#d8e1ed;
}
.nav .header-home-icon.active:after,
.nav .header-home-icon:hover:after{
  display:none;
}
.menu-btn{
  display:none;
  width:48px;
  height:48px;
  background:#fff;
  border:1px solid #e7ebf2;
  border-radius:18px;
  color:var(--blue);
  box-shadow:0 10px 24px rgba(10,38,72,.06);
}
.menu-btn svg{
  width:22px;
  height:22px;
}
.hero{
  min-height:430px;background:url('hero-bg.png') center/cover no-repeat;position:relative;overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.30),rgba(255,255,255,.86) 46%,rgba(255,255,255,.18)),
    var(--pattern-image) center top/620px auto repeat;
  opacity:.72;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.92),rgba(0,0,0,.72) 58%,transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,.92),rgba(0,0,0,.72) 58%,transparent 100%);
}
.hero:after{
  content:"";position:absolute;inset:auto 0 0 0;height:95px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff);
}
.hero-content{position:relative;z-index:2;min-height:430px;display:grid;align-items:center;justify-items:center;text-align:center;padding:50px 0 110px}
.hero h1{font-size:46px;line-height:1.35;margin:0;color:var(--blue);font-weight:900;letter-spacing:-1px}
.hero p{max-width:640px;color:#5b6476;margin:16px 0 24px;font-size:17px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.quick{margin-top:-78px;position:relative;z-index:4}
.quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.q-card{
  background:#fff;border:1px solid #eef1f5;border-radius:16px;padding:30px 24px;min-height:178px;text-align:center;
  box-shadow:var(--shadow);transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.q-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(10,38,72,.14);border-color:#d9e4f2}
.icon{
  width:64px;height:64px;margin:0 auto 16px;border:1px solid rgba(184,138,34,.18);border-radius:20px;
  display:grid;place-items:center;background:linear-gradient(180deg,#fff9ee,#ffffff);
  box-shadow:0 14px 28px rgba(10,38,72,.08), inset 0 1px 0 rgba(255,255,255,.95);
}
.icon svg{
  width:30px;
  height:30px;
  stroke:var(--blue);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.gov-icon{
  display:block;
  width:100%;
  height:100%;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon .gov-icon{
  width:32px;
  height:32px;
  color:var(--blue);
}
.q-card h3{margin:0 0 6px;color:#26334a;font-size:18px}
.q-card p{margin:0;color:#7d8595;font-size:13px;line-height:1.7}
.more{display:inline-flex;align-items:center;gap:7px;margin-top:12px;color:var(--blue);font-weight:800;font-size:13px}
.section{padding:70px 0}
.section-title{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:26px}
.section-title h2{margin:0;color:#1c2f56;font-size:28px}
.section-title h2:before{content:"";display:inline-block;width:30px;height:3px;background:var(--gold);margin-left:12px;vertical-align:middle}
.section-title p{margin:6px 0 0;color:#7a8293}
.section-title--pattern{
  position:relative;
  padding:18px 20px;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(248,251,255,.92));
  border:1px solid rgba(208,220,236,.72);
  box-shadow:0 14px 34px rgba(10,38,72,.05);
}
.section-title--pattern::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--pattern-image) center/420px auto repeat;
  opacity:.12;
  mix-blend-mode:multiply;
  pointer-events:none;
}
.section-title--pattern > *{position:relative;z-index:1}
.whatsapp-float{
    position:fixed;
    left:24px;
    bottom:184px;
    z-index:92;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:auto;
    width:72px;
    height:72px;
    padding:0;
    border-radius:28px;
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(251,247,239,.98));
    border:1px solid rgba(206,164,111,.34);
    color:var(--theme-panel-primary);
    box-shadow:0 18px 36px rgba(13,37,72,.12);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  }
.whatsapp-float:hover,
.whatsapp-float:focus-visible{
    transform:translateY(-2px);
    border-color:rgba(42,81,144,.34);
    box-shadow:0 24px 44px rgba(13,37,72,.16);
    background:linear-gradient(180deg,#ffffff,rgba(248,241,229,.98));
  }
.whatsapp-float:focus-visible{
    outline:3px solid rgba(42,81,144,.16);
    outline-offset:2px;
  }
.whatsapp-float__icon{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:20px;
    background:linear-gradient(180deg,#ffffff,rgba(243,248,255,.96));
    color:#26a045;
    border:1px solid rgba(206,164,111,.22);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    flex:0 0 auto;
  }
.whatsapp-float__icon svg{
    width:30px;
    height:30px;
  }
.whatsapp-float__copy{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    text-align:right;
    line-height:1.3;
}
.whatsapp-float__copy strong{
  font-size:16px;
  font-weight:900;
  color:var(--theme-panel-primary);
}
.whatsapp-float__copy small{
  font-size:12px;
  font-weight:700;
  color:#718096;
}
.has-accessibility-panel-open{overflow:hidden}
.accessibility-widget{
    position:fixed;
    left:24px;
    right:auto;
    bottom:104px;
    z-index:91;
  }
.accessibility-widget__trigger{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:auto;
    width:72px;
    height:72px;
    padding:0;
    border:none;
    border-radius:28px;
    background:linear-gradient(180deg,var(--theme-panel-primary),var(--theme-panel-primary-dark));
    color:#fff;
    box-shadow:0 18px 36px rgba(13,37,72,.18);
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  }
.accessibility-widget__trigger:hover,
.accessibility-widget__trigger:focus-visible{
    transform:translateY(-2px);
    box-shadow:0 24px 44px rgba(13,37,72,.22);
    filter:saturate(1.03);
}
.accessibility-widget__trigger:focus-visible{
    outline:3px solid rgba(206,164,111,.28);
    outline-offset:2px;
}
.accessibility-widget__trigger-icon{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:20px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
  }
.accessibility-widget__trigger-icon svg{width:28px;height:28px}
.accessibility-widget__trigger-copy{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    text-align:right;
    line-height:1.3;
}
.accessibility-widget__trigger-copy strong{font-size:16px;font-weight:900}
.accessibility-widget__trigger-copy small{color:rgba(255,255,255,.82);font-size:13px}
.accessibility-widget__overlay{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:flex-end;
  background:rgba(7,24,50,.28);
  backdrop-filter:blur(4px);
  opacity:0;
  visibility:hidden;
  transition:opacity .22s ease, visibility .22s ease;
}
.accessibility-widget__overlay.is-open{
  opacity:1;
  visibility:visible;
}
.accessibility-panel{
  width:min(560px,100%);
  height:100vh;
  overflow:auto;
  padding:22px 22px 28px;
  background:linear-gradient(180deg,#f7f9fd,#f3f6fb 18%,#eef3fa 100%);
  border-left:1px solid rgba(198,210,230,.75);
  box-shadow:-24px 0 54px rgba(7,24,50,.18);
  transform:translateX(100%);
  transition:transform .24s ease;
  outline:none;
}
.accessibility-widget__overlay.is-open .accessibility-panel{transform:translateX(0)}
.accessibility-panel__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  padding:22px 22px 18px;
  border-radius:28px;
  background:linear-gradient(135deg,var(--theme-panel-primary),#315d9f 62%,var(--theme-panel-primary-dark));
  color:#fff;
  box-shadow:0 18px 38px rgba(42,81,144,.24);
}
.accessibility-panel__eyebrow{
  margin-bottom:4px;
  font-size:13px;
  font-weight:800;
  color:rgba(255,255,255,.78);
}
.accessibility-panel__header h2{margin:0;font-size:30px;font-weight:900}
.accessibility-panel__header p{margin:8px 0 0;color:rgba(255,255,255,.86);font-size:15px}
.accessibility-panel__close{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  flex:0 0 auto;
  cursor:pointer;
}
.accessibility-panel__close svg{width:20px;height:20px}
.accessibility-panel__body{display:grid;gap:18px}
.accessibility-panel__section{
  padding:18px;
  border-radius:26px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(207,218,233,.78);
  box-shadow:0 14px 30px rgba(10,38,72,.06);
}
.accessibility-panel__section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}
.accessibility-panel__section-title h3{margin:0;color:#223451;font-size:21px}
.accessibility-panel__section-title span{color:#718096;font-size:13px;font-weight:700}
.accessibility-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.accessibility-grid--compact{grid-template-columns:repeat(2,minmax(0,1fr))}
.accessibility-card{
  min-height:144px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 14px;
  border:1px solid rgba(212,220,233,.92);
  border-radius:22px;
  background:#fff;
  color:#1f2e4b;
  box-shadow:0 14px 28px rgba(10,38,72,.05);
  cursor:pointer;
  text-align:center;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.accessibility-card:hover,
.accessibility-card:focus-visible,
.accessibility-card[aria-pressed="true"],
.accessibility-card[aria-expanded="true"]{
  transform:translateY(-2px);
  border-color:var(--theme-panel-primary);
  box-shadow:0 18px 34px var(--theme-panel-ring);
  background:linear-gradient(180deg,#ffffff,var(--theme-panel-primary-soft));
}
.accessibility-card--wide{min-height:112px}
.accessibility-card__icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(180deg,#f7f9fc,#ffffff);
  color:#111;
}
.accessibility-card__icon svg{width:28px;height:28px}
.accessibility-card strong{font-size:18px;font-weight:900;line-height:1.45}
.accessibility-card small{color:#67758a;font-size:13px;font-weight:700}
.accessibility-structure{
  margin-top:16px;
  border-top:1px solid rgba(216,223,233,.9);
  padding-top:16px;
}
.accessibility-structure__head h4{margin:0 0 4px;color:#243554;font-size:18px}
.accessibility-structure__head p,
.accessibility-structure__empty,
.accessibility-panel__note{margin:0;color:#6f7d92;font-size:14px}
.accessibility-structure__list{display:grid;gap:10px;margin-top:14px}
.accessibility-structure__item{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  background:#fbfcfe;
  border:1px solid rgba(214,224,238,.86);
  color:#1d2c49;
  font-weight:800;
}
.accessibility-structure__item--h2{margin-right:10px}
.accessibility-structure__item--h3{margin-right:20px}
.accessibility-panel__note{margin-top:16px;color:#8f5f23;font-weight:800}
.accessibility-panel__footer{margin-top:18px}
.accessibility-panel__reset{
  width:100%;
  min-height:58px;
  border:none;
  border-radius:18px;
  background:linear-gradient(135deg,var(--theme-panel-primary),var(--theme-panel-primary-dark));
  color:#fff;
  font-size:17px;
  font-weight:900;
  box-shadow:0 18px 34px rgba(42,81,144,.20);
  cursor:pointer;
}
html[data-access-font-size="lg"]{font-size:17px}
html[data-access-font-size="xl"]{font-size:18.5px}
html[data-access-letter-spacing="wide"] body,
html[data-access-letter-spacing="wide"] p,
html[data-access-letter-spacing="wide"] li,
html[data-access-letter-spacing="wide"] a,
html[data-access-letter-spacing="wide"] h1,
html[data-access-letter-spacing="wide"] h2,
html[data-access-letter-spacing="wide"] h3{letter-spacing:.04em}
html[data-access-line-height="relaxed"] body,
html[data-access-line-height="relaxed"] p,
html[data-access-line-height="relaxed"] li{line-height:2.15}
html[data-access-align="justify"] p,
html[data-access-align="justify"] li,
html[data-access-align="justify"] .policy-content,
html[data-access-align="justify"] .about-history__copy,
html[data-access-align="justify"] .director-message__content{text-align:justify}
html[data-access-links="highlight"] a{
  text-decoration:underline !important;
  text-underline-offset:3px;
  text-decoration-thickness:2px;
}
html[data-access-links="highlight"] a:not(.btn):not(.header-home-icon):not(.social a):not(.accessibility-widget__trigger):not(.footer-call):not(.accessibility-card){
  color:var(--theme-panel-primary) !important;
  background:rgba(206,164,111,.22);
  box-shadow:0 0 0 2px rgba(206,164,111,.20);
  border-radius:6px;
}
html[data-access-contrast="high"]{filter:contrast(1.18) saturate(1.02)}
html[data-access-contrast="high"] body{background:#fff !important}
html[data-access-contrast="dark"] body{
  background:#101820 !important;
  color:#f4f6f8 !important;
}
html[data-access-contrast="dark"] .topbar,
html[data-access-contrast="dark"] .nav-panel,
html[data-access-contrast="dark"] .q-card,
html[data-access-contrast="dark"] .about-panel,
html[data-access-contrast="dark"] .goal-card,
html[data-access-contrast="dark"] .trustee-card,
html[data-access-contrast="dark"] .service-card,
html[data-access-contrast="dark"] .news-card,
html[data-access-contrast="dark"] .project-card,
html[data-access-contrast="dark"] .footer,
html[data-access-contrast="dark"] .about-cta,
html[data-access-contrast="dark"] .page-hero,
html[data-access-contrast="dark"] .governance-card,
html[data-access-contrast="dark"] .policy-single__card{
  background:#162232 !important;
  color:#f4f6f8 !important;
  border-color:#324153 !important;
}
html[data-access-contrast="dark"] a,
html[data-access-contrast="dark"] h1,
html[data-access-contrast="dark"] h2,
html[data-access-contrast="dark"] h3,
html[data-access-contrast="dark"] h4,
html[data-access-contrast="dark"] .section-title h2,
html[data-access-contrast="dark"] .nav a,
html[data-access-contrast="dark"] .footer-column h4{color:#f8fbff !important}
html[data-access-contrast="dark"] p,
html[data-access-contrast="dark"] li,
html[data-access-contrast="dark"] small,
html[data-access-contrast="dark"] span{color:#dfe6ee !important}
html[data-access-saturation="soft"]{filter:saturate(.76)}
html[data-access-images="hidden"] img,
html[data-access-images="hidden"] svg[aria-hidden="true"]{visibility:hidden !important}
html[data-access-motion="off"] *,
html[data-access-motion="off"] *::before,
html[data-access-motion="off"] *::after{
  animation:none !important;
  transition:none !important;
  scroll-behavior:auto !important;
}
html[data-access-cursor="large"],
html[data-access-cursor="large"] *{
  cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24'%3E%3Cpath fill='%230b3a78' d='M5 3v14l4.4-3 2.4 5 2.1-1.1-2.2-4.8 4.9-.4L5 3z'/%3E%3C/svg%3E") 4 2, auto !important;
}
html[data-access-reading="on"] body{
  background:#f7f0dc !important;
  color:#1a2337 !important;
}
html[data-access-reading="on"] .topbar,
html[data-access-reading="on"] .footer,
html[data-access-reading="on"] .quick,
html[data-access-reading="on"] .gold-border,
html[data-access-reading="on"] .hero,
html[data-access-reading="on"] .footer-topbar,
html[data-access-reading="on"] .social{opacity:.16}
html[data-access-reading="on"] .site-main{
  max-width:1000px;
  margin:0 auto;
}
html[data-access-reading="on"] .site-main p,
html[data-access-reading="on"] .site-main li{
  font-size:1.08em;
  line-height:2.2;
}
.has-happiness-meter-open{overflow:hidden}
.happiness-meter{
    position:fixed;
    left:24px;
    bottom:24px;
    z-index:90;
  }
.happiness-meter__trigger{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
    min-width:auto;
    width:72px;
    height:72px;
    padding:0;
    border:none;
    border-radius:28px;
    background:linear-gradient(180deg,var(--theme-panel-primary),var(--theme-panel-primary-dark));
    color:#fff;
    box-shadow:0 18px 36px rgba(13,37,72,.18);
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  }
.happiness-meter__trigger:hover,
.happiness-meter__trigger:focus-visible{
    transform:translateY(-2px);
    box-shadow:0 24px 44px rgba(13,37,72,.22);
    filter:saturate(1.03);
}
.happiness-meter__trigger:focus-visible{
    outline:3px solid rgba(206,164,111,.28);
    outline-offset:2px;
}
.happiness-meter__trigger-icon{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:20px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
  }
.happiness-meter__trigger-icon svg{
    width:30px;
    height:30px;
  }
.happiness-meter__trigger-copy{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    text-align:right;
  line-height:1.35;
}
.happiness-meter__trigger-copy strong{
  font-size:16px;
  font-weight:900;
}
.happiness-meter__trigger-copy small{
  font-size:13px;
  color:rgba(255,255,255,.78);
}
.happiness-meter__overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:32px 20px;
  background:rgba(6,22,48,.42);
  backdrop-filter:blur(5px);
}
.happiness-meter__overlay.is-open{display:flex}
.happiness-meter__dialog{
  position:relative;
  width:min(880px,100%);
  max-height:min(90vh,920px);
  overflow:auto;
  padding:28px 32px 26px;
  border-radius:34px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.99),rgba(252,249,243,.98)),
    var(--pattern-image) center top/460px auto repeat;
  border:1px solid rgba(196,205,220,.68);
  box-shadow:0 34px 80px rgba(6,22,48,.22);
}
.happiness-meter__dialog::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:6px;
  border-radius:34px 34px 0 0;
  background:linear-gradient(90deg,var(--theme-panel-accent),var(--theme-panel-primary));
}
.happiness-meter__close{
  position:absolute;
  top:16px;
  left:16px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#f3f7fb;
  color:var(--theme-panel-primary);
  box-shadow:0 10px 24px rgba(10,38,72,.10);
  cursor:pointer;
}
.happiness-meter__close svg{width:20px;height:20px}
.happiness-meter__header{
  padding:6px 8px 16px;
}
.happiness-meter__brand{
  display:flex;
  align-items:center;
  gap:18px;
}
.happiness-meter__brand-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border-radius:26px;
  background:linear-gradient(180deg,var(--theme-panel-accent-soft),#ffffff);
  color:var(--theme-panel-primary);
  box-shadow:0 16px 32px rgba(42,81,144,.12);
}
.happiness-meter__brand-icon svg{width:46px;height:46px}
.happiness-meter__eyebrow{
  color:var(--theme-panel-accent);
  font-size:14px;
  font-weight:800;
  margin-bottom:4px;
}
.happiness-meter__brand h2{
  margin:0;
  color:#213454;
  font-size:28px;
  line-height:1.4;
}
.happiness-meter__steps{position:relative}
.happiness-meter__step{display:none;padding:8px 6px 0}
.happiness-meter__step.is-active{display:block}
.happiness-meter__intro{
  text-align:center;
  margin-bottom:24px;
}
.happiness-meter__intro p{
  margin:0;
  color:#2b3c5e;
  font-size:30px;
  font-weight:900;
  line-height:1.35;
}
.happiness-meter__intro small{
  display:block;
  margin-top:8px;
  color:#6d7c91;
  font-size:15px;
}
.happiness-meter__moods{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.happiness-meter__mood{
  padding:20px 16px 18px;
  border-radius:30px;
  border:1px solid rgba(201,214,229,.9);
  background:#fff;
  color:var(--theme-panel-primary);
  box-shadow:0 16px 38px rgba(10,38,72,.08);
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.happiness-meter__mood:hover,
.happiness-meter__mood.is-selected{
  transform:translateY(-4px);
  border-color:var(--theme-panel-primary);
  box-shadow:0 20px 44px rgba(42,81,144,.16);
  background:linear-gradient(180deg,#ffffff,var(--theme-panel-primary-soft));
}
.happiness-meter__mood-icon{
  display:block;
  width:180px;
  max-width:100%;
  margin:0 auto 16px;
}
.happiness-meter__mood-icon svg{
  width:100%;
  height:auto;
}
.happiness-meter__mood strong{
  display:block;
  font-size:20px;
  font-weight:900;
  color:#26344f;
}
.happiness-meter__criteria{
  display:grid;
  gap:14px;
}
.happiness-meter__criterion{
  display:grid;
  grid-template-columns:minmax(180px,1fr) auto;
  align-items:center;
  gap:20px;
  padding:18px 8px;
  border-bottom:1px solid rgba(218,225,235,.8);
}
.happiness-meter__criterion:last-child{border-bottom:none}
.happiness-meter__criterion-title{
  color:var(--theme-panel-primary);
  font-size:18px;
  font-weight:800;
}
.happiness-meter__criterion-options{
  display:flex;
  align-items:center;
  gap:14px;
}
.happiness-meter__criterion-option{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(201,214,229,.9);
  background:#fff;
  color:var(--theme-panel-primary);
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.happiness-meter__criterion-option svg{width:42px;height:42px}
.happiness-meter__criterion-option:hover,
.happiness-meter__criterion-option.is-selected{
  transform:translateY(-2px);
  border-color:var(--theme-panel-primary);
  box-shadow:0 14px 28px rgba(42,81,144,.14);
}
.happiness-meter__fields{
  display:grid;
  gap:16px;
}
.happiness-meter__fields textarea,
.happiness-meter__fields input{
  width:100%;
  border:1px solid #ccd7e5;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  padding:18px 20px;
  font:inherit;
  color:#22314c;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.happiness-meter__fields textarea:focus,
.happiness-meter__fields input:focus{
  border-color:var(--theme-panel-primary);
  box-shadow:0 0 0 4px rgba(42,81,144,.10);
}
.happiness-meter__field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.happiness-meter__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:26px;
}
.happiness-meter__actions--center{justify-content:center}
.happiness-meter__step--success{
  text-align:center;
  padding:24px 8px 6px;
}
.happiness-meter__success-icon{
  width:96px;
  height:96px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
  border-radius:32px;
  background:linear-gradient(180deg,var(--theme-panel-accent-soft),#fff);
  color:var(--theme-panel-primary);
  box-shadow:0 20px 40px rgba(42,81,144,.16);
}
.happiness-meter__success-icon svg{width:54px;height:54px}
.happiness-meter__step--success h3{
  margin:0 0 8px;
  color:#243454;
  font-size:28px;
}
.happiness-meter__step--success p{
  max-width:520px;
  margin:0 auto;
  color:#68768b;
  font-size:16px;
}
.happiness-meter__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:18px;
  padding:0 8px;
}
.happiness-meter.is-complete .happiness-meter__footer{display:none}
.happiness-meter__progress{
  display:flex;
  align-items:center;
  gap:8px;
}
.happiness-meter__progress span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#dbe3ef;
}
.happiness-meter__progress span.is-active{
  background:var(--theme-panel-primary);
}
.happiness-meter__error{
  margin:0;
  color:#c0392b;
  font-size:14px;
  font-weight:700;
  opacity:0;
  transition:opacity .2s ease;
}
.happiness-meter__error.is-visible{opacity:1}
.happiness-meter .btn{
  min-width:130px;
  border-radius:999px;
}
.happiness-meter .btn.is-loading{
  opacity:.7;
  pointer-events:none;
}
.gov-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:78px;
  padding:4px 10px;
  border-radius:999px;
  background:#eef2f6;
  color:#35527a;
  font-size:12px;
  font-weight:800;
}
.gov-status--new{background:#eef7ff;color:#1464b4}
.gov-status--reviewed,
.gov-status--replied{background:#effaf1;color:#257a43}
.gov-status--closed{background:#f5f1ea;color:#8a6531}
.gov-status--in_progress{background:#fff5e7;color:#a86511}
@media (max-width: 1024px){
  .happiness-meter__dialog{
    padding:26px 22px 24px;
  }
  .happiness-meter__mood-icon{width:140px}
}
@media (max-width: 820px){
  .whatsapp-float{
      left:16px;
      bottom:176px;
    }
  .accessibility-widget{
      left:16px;
      right:auto;
      bottom:96px;
    }
  .happiness-meter{
      left:16px;
      bottom:16px;
      right:auto;
    }
  .happiness-meter__trigger{
      width:72px;
      max-width:none;
      justify-content:center;
    }
  .happiness-meter__brand{
      align-items:flex-start;
    }
  .happiness-meter__brand h2{font-size:24px}
  .happiness-meter__intro p{font-size:24px}
  .happiness-meter__moods{grid-template-columns:1fr;gap:14px}
  .happiness-meter__criterion{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }
  .happiness-meter__field-grid{grid-template-columns:1fr}
  .happiness-meter__footer{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 640px){
  .whatsapp-float{
      left:14px;
      bottom:162px;
      width:72px;
      height:72px;
      border-radius:24px;
      margin-bottom: 20px;
    }
  .whatsapp-float__copy{
      display:none;
    }
  .whatsapp-float__icon{
      width:48px;
      height:48px;
      border-radius:16px;
    }
  .happiness-meter__overlay{
    padding:14px;
  }
  .happiness-meter__dialog{
    border-radius:24px;
  }
  .happiness-meter__close{
    top:12px;
    left:12px;
    width:40px;
    height:40px;
  }
  .happiness-meter__brand{
    gap:12px;
  }
  .happiness-meter__brand-icon{
    width:58px;
    height:58px;
    border-radius:20px;
  }
  .happiness-meter__brand-icon svg{width:38px;height:38px}
  .happiness-meter__brand h2{font-size:20px}
  .happiness-meter__intro p{font-size:21px}
  .happiness-meter__criterion-options{
    gap:10px;
  }
  .happiness-meter__criterion-option{
    width:56px;
    height:56px;
  }
  .happiness-meter__criterion-option svg{
    width:36px;
    height:36px;
  }
  .happiness-meter__actions{
    flex-direction:column-reverse;
  }
  .happiness-meter .btn{
      width:100%;
    }
  }
.about-card{
  background:linear-gradient(135deg,#fff,#f7f9fc);border:1px solid #edf0f5;border-radius:18px;box-shadow:0 10px 35px rgba(10,38,72,.06);
  padding:34px;display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:center;
}
.eyebrow{color:var(--gold);font-weight:900;font-size:13px;margin-bottom:6px}
.about-card h2{font-size:30px;line-height:1.35;color:var(--blue);margin:0 0 14px}
.about-card p{color:#667085;margin:0 0 20px}
.image-frame{position:relative;padding:16px}
.image-frame:before,.image-frame:after{content:"";position:absolute;border:2px solid var(--gold);width:120px;height:80px}
.image-frame:before{right:0;top:0;border-left:0;border-bottom:0}
.image-frame:after{left:0;bottom:0;border-right:0;border-top:0}
.image-frame img{border-radius:10px;width:100%;height:260px;object-fit:cover}
.values{padding-top:10px}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.value{padding:30px 22px;text-align:center;border-left:1px solid var(--line)}
.value:last-child{border-left:0}
.value .icon{
  width:72px;height:72px;margin-bottom:18px;border:1px solid rgba(184,138,34,.18);border-radius:22px;
  background:linear-gradient(180deg,#fff8ea,#ffffff);
  box-shadow:0 14px 30px rgba(184,138,34,.12), inset 0 1px 0 rgba(255,255,255,.9);
}
.value .icon svg{
  width:34px;
  height:34px;
  stroke:var(--gold);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.value h3{margin:5px 0;color:var(--blue);font-size:17px}
.value p{margin:0;color:#777f90;font-size:13px;line-height:1.7}
.projects-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.project-card{
  min-height:165px;border-radius:13px;overflow:hidden;position:relative;color:#fff;box-shadow:0 12px 28px rgba(0,0,0,.12);
  background:#123;
}
.project-card img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;filter:saturate(.9)}
.project-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,28,58,.10),rgba(6,28,58,.88))}
.project-card .pc-content{position:absolute;inset:auto 0 0 0;z-index:2;padding:18px}
.project-card h3{margin:0;font-size:18px}
.project-card .mini-icon{
  float:left;
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:9px;
  color:#fff;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
}
.project-card .mini-icon .gov-icon{
  width:20px;
  height:20px;
}
.news-layout{display:grid;grid-template-columns:250px 1fr;gap:28px;align-items:stretch}
.help-box{
  background:linear-gradient(160deg,#0c3977,#09295a);color:#fff;border-radius:14px;padding:28px;box-shadow:var(--shadow)
}
.help-box h3{font-size:24px;margin:0 0 12px}
.help-box p{color:#dbe6f6;margin:0 0 18px}
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.news-card{background:#fff;border:1px solid #edf0f5;border-radius:14px;overflow:hidden;box-shadow:0 10px 30px rgba(10,38,72,.07)}
.news-card img{height:245px;width:100%;object-fit:cover}
.news-card .body{padding:16px}
.meta{font-size:12px;color:var(--gold);font-weight:900}
.news-card h3{font-size:16px;line-height:1.65;margin:6px 0;color:#25304b}
.news-card .body p{margin:0 0 10px;color:#5d6780;line-height:1.8;font-size:14px}
.date{color:#8a92a1;font-size:12px}
.empty-news-state{background:#fff;border:1px solid #edf0f5;border-radius:16px;padding:32px;box-shadow:0 10px 30px rgba(10,38,72,.06)}
.empty-news-state h3{margin:0 0 8px;color:#153b73;font-size:20px}
.empty-news-state p{margin:0;color:#5d6780;line-height:1.8}
.news-single-card img{height:320px}
.news-content{display:grid;gap:14px;color:#3a4357;line-height:1.95;font-size:15px}
.news-content p,.news-content blockquote,.news-content h2,.news-content h3,.news-content h4{margin:0}
.news-content h2,.news-content h3,.news-content h4{color:#153b73;font-size:22px;line-height:1.5}
.news-content blockquote{padding:18px 22px;border-inline-start:4px solid #c79a32;background:#f8fbff;border-radius:12px;color:#203456}
.stats{
  background:linear-gradient(135deg,#092e63,#113f82);color:#fff;border-radius:14px;padding:30px 22px;display:grid;grid-template-columns:repeat(4,1fr);gap:0;overflow:hidden;
  position:relative;
}
.stats:before{content:"";position:absolute;inset:0;background-image:linear-gradient(45deg,rgba(255,255,255,.04) 25%,transparent 25%);background-size:28px 28px;opacity:.35}
.stat{position:relative;z-index:1;text-align:center;border-left:1px solid rgba(255,255,255,.22)}
.stat:last-child{border-left:0}
.stat b{display:block;font-size:34px;line-height:1;color:#fff}
.stat span{color:#e8eef8;font-weight:700}
.partners{display:grid;grid-template-columns:280px 1fr;gap:26px;align-items:start}
.partners h2{margin-top:0}
.partner-logos{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.partner{
  min-height:188px;
  background:#fff;
  border:1px solid #edf0f5;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-align:center;
  color:#4b5563;
  font-weight:800;
  font-size:13px;
  padding:16px;
  box-shadow:0 10px 24px rgba(10,38,72,.05);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.partner:hover{
  transform:translateY(-3px);
  border-color:rgba(184,138,34,.35);
  box-shadow:0 18px 34px rgba(10,38,72,.1);
}
.partner__logo{
  width:100%;
  height:84px;
  display:grid;
  place-items:center;
}
.partner img{
  width:100%;
  max-width:185px;
  max-height:78px;
  height:auto;
  object-fit:contain;
}
.partner__name{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1.6;
  color:#26364f;
}
.partner__type{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 12px;
  border-radius:999px;
  background:#eef5ff;
  color:#0b4a8f;
  font-size:12px;
  font-weight:900;
}
.partner__type--supporter{
  background:#fff6df;
  color:#9a6b10;
}
.contact-strip{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:20px;background:#f8fafc;border:1px solid #edf0f5;border-radius:16px;padding:22px;align-items:stretch}
.map-box{
  width:100%;
  height:100%;
  min-height:220px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #edf0f5;
  background:#eef3fa;
  box-shadow:0 12px 30px rgba(10,38,72,.10);
}
.map-box img{width:100%;height:100%;min-height:220px;object-fit:cover}
.map-iframe{
  width:100%;
  height:100%;
  min-height:220px;
  border:0;
  display:block;
}
.info-box{background:#fff;border:1px solid #edf0f5;border-radius:14px;padding:20px}
.info-box h3{margin:0 0 10px;color:var(--blue)}
.footer{
  margin-top:70px;
  background:
    radial-gradient(circle at top right, rgba(212,165,60,.10), transparent 28%),
    linear-gradient(180deg,#fdfbf6,#f7f1e3 62%,#f8f3e9 100%);
  color:#223657;
  border-top:1px solid rgba(184,138,34,.18);
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:190px;
  background:var(--pattern-image) center top/520px auto repeat;
  opacity:.10;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.9),transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,.9),transparent 100%);
  pointer-events:none;
}
.footer-shell{
  position:relative;
  padding:34px 0 20px;
  z-index:1;
}
.footer-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 18px;
  margin-bottom:28px;
  /* background:rgba(255,249,238,.92); */
  border:1px solid rgba(184,138,34,.16);
  border-radius:999px;
  box-shadow:0 18px 38px rgba(20,38,74,.08);
}
.footer-topbar__nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex:1 1 auto;
  flex-wrap:wrap;
}
.footer-topbar__nav a{
  color:#1d3156;
  font-size:18px;
  font-weight:800;
  transition:color .2s ease, transform .2s ease;
}
.footer-topbar__nav a:hover{
  color:var(--gold);
  transform:translateY(-1px);
}
.footer-call{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  background:linear-gradient(135deg,#cea46f,#b7983a);
  color:#fff;
  font-weight:900;
  font-size:24px;
  box-shadow:0 16px 34px #b7983a11;
}
.footer-call__icon{
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
}
.footer-call__icon svg{
  width:20px;
  height:20px;
}
.footer-main{
  display:grid;
  grid-template-columns:1.35fr .9fr .9fr .9fr;
  gap:0;
  align-items:start;
  background:rgba(255,255,255,.42);
  border:1px solid rgba(184,138,34,.12);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(20,38,74,.08);
}
.footer-brand,
.footer-column{
  min-height:100%;
  padding:34px 30px;
}
.footer-brand{
  background:linear-gradient(180deg,rgba(255,255,255,.52),rgba(255,250,242,.82));
}
.footer-column{
  border-right:1px solid rgba(30,49,86,.10);
}
.footer-column:last-child{
  border-right:0;
}
.footer-brand img{
  width:360px;
  max-width:100%;
  margin-bottom:18px;
}
.footer-brand p,
.footer-column p,
.footer-column a{
  color:#536278;
}
.footer-brand p{
  margin:0;
  max-width:420px;
  line-height:2;
}
.footer-column h4{
  margin:0 0 16px;
  color:#123763;
  font-size:19px;
  font-weight:900;
}
.footer-column ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:11px;
}
.footer-column a{
  font-weight:700;
  transition:color .2s ease, padding-right .2s ease;
}
.footer-column a:hover{
  color:var(--gold);
  padding-right:4px;
}
.footer-column__lead{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.9;
}
.footer-column--social{
  background:linear-gradient(180deg,rgba(248,243,233,.72),rgba(255,255,255,.52));
}
.social{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.social a{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fffdf8;
  color:#163967;
  border:1px solid rgba(184,138,34,.22);
  box-shadow:0 10px 22px rgba(20,38,74,.08);
  transition:transform .2s ease, color .2s ease, border-color .2s ease;
}
.social a:hover{
  transform:translateY(-2px);
  color:var(--gold);
  border-color:rgba(184,138,34,.46);
}
.social svg{
  width:18px;
  height:18px;
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 8px 0;
  margin-top:18px;
  border-top:1px dashed rgba(30,49,86,.18);
  color:#5e6c82;
  font-size:14px;
}
.footer-bottom strong{
  color:#173962;
  font-weight:900;
}
.gold-border{
  width:100%;
  height:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0)),
    var(--pattern-image) center/280px auto repeat-x;
  opacity:.9;
}

.page-hero{
  background:linear-gradient(135deg,rgba(8,44,93,.88),rgba(8,44,93,.55)),url('hero-bg.png') center/cover;
  color:#fff;padding:70px 0;text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--pattern-image) center top/560px auto repeat;
  opacity:.10;
  mix-blend-mode:screen;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.95),rgba(0,0,0,.75) 62%,transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,.95),rgba(0,0,0,.75) 62%,transparent 100%);
  pointer-events:none;
}
.page-hero .container{position:relative;z-index:1}
.page-hero h1{margin:0;font-size:42px}
.page-hero p{margin:10px auto 0;max-width:650px;color:#edf3fb}
.content-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.service-card,.policy-card,.open-card{
  background:#fff;border:1px solid #edf0f5;border-radius:16px;padding:26px;box-shadow:0 10px 30px rgba(10,38,72,.07);
}
.service-card h3,.policy-card h3,.open-card h3{color:var(--blue);margin:10px 0}
.governance-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.governance-grid > .empty-state{
  grid-column:1/-1;
  padding:42px 24px;
  text-align:center;
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:8px;
  color:#667085;
}
.governance-grid > .empty-state h3{
  margin:0 0 8px;
  color:var(--blue);
}
.governance-grid > .empty-state p{margin:0}
.governance-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  padding:28px 28px 24px;
  box-shadow:0 16px 34px rgba(10,38,72,.08);
}
.governance-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,var(--gold),#e4c26f 55%,rgba(184,138,34,.22));
}
.governance-card .icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(145deg,#fff8ea,#fff);
  border:1px solid rgba(184,138,34,.18);
  color:var(--gold);
  margin-bottom:18px;
}
.governance-card .icon svg{
  width:30px;
  height:30px;
  stroke:currentColor;
  stroke-width:1.8;
}
.governance-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.65;
}
.governance-card p{
  margin:0;
  color:#667085;
  line-height:1.95;
}
.governance-card .more{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
}
.policy-single{
  max-width:980px;
}
.policy-single__back{
  margin-bottom:18px;
}
.policy-single__card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:28px;
  padding:38px;
  box-shadow:0 22px 46px rgba(10,38,72,.09);
}
.policy-single__header{
  padding-bottom:22px;
  margin-bottom:26px;
  border-bottom:1px solid #edf0f5;
}
.policy-single__header h2{
  margin:10px 0 12px;
  color:var(--blue);
  font-size:34px;
  line-height:1.45;
}
.policy-single__header p{
  margin:0;
  color:#637084;
  line-height:1.95;
}
.policy-content{
  color:#3d4b61;
  line-height:2;
  font-size:17px;
}
.policy-content h3{
  margin:30px 0 14px;
  color:var(--blue);
  font-size:24px;
}
.policy-content p{
  margin:0 0 16px;
}
.policy-content ul{
  margin:0 0 22px;
  padding:0 22px 0 0;
}
.policy-content li{
  margin:0 0 12px;
}
.about-history{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:34px;
  align-items:start;
}
.about-history__copy{
  background:linear-gradient(145deg,#fff,#f8fafc);
  border:1px solid #edf0f5;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(10,38,72,.08);
  padding:36px;
}
.about-history__copy h2{margin:0 0 16px;color:var(--blue);font-size:34px;line-height:1.35}
.about-history__copy p{margin:0 0 18px;color:#5f6b7a}
.about-history__media .image-frame{padding:18px;background:#fff;border:1px solid #edf0f5;border-radius:22px;box-shadow:0 18px 40px rgba(10,38,72,.08)}
.about-history__media .image-frame img{height:520px}
.about-history__meta{margin-top:24px}
.about-history__meta-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-right:4px solid var(--gold);
  border-radius:18px;
  padding:24px;
}
.about-history__meta-card h3{margin:0 0 12px;color:var(--blue);font-size:20px}
.about-history__meta-card p{margin:0;color:#5f6b7a}
.about-vision-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.about-panel{
  background:linear-gradient(180deg,#fff,#f8fafc);
  border:1px solid #edf0f5;
  border-radius:20px;
  padding:30px;
  box-shadow:0 14px 34px rgba(10,38,72,.07);
}
.about-panel__tag{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  background:#fff8ea;
  color:var(--gold);
  border:1px solid rgba(184,138,34,.22);
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}
.about-panel h3{margin:16px 0 12px;color:var(--blue);font-size:26px}
.about-panel p{margin:0;color:#647084}
.about-values{background:linear-gradient(180deg,#fafbfd,#fff)}
.about-values-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.about-value-card{
  background:#fff;
  border:1px solid #edf0f5;
  border-radius:18px;
  padding:26px 22px;
  text-align:center;
  box-shadow:0 12px 30px rgba(10,38,72,.06);
}
.about-value-card .icon{
  width:72px;
  height:72px;
  margin:0 auto 16px;
}
.about-value-card h3{margin:0 0 10px;color:var(--blue);font-size:18px}
.about-value-card p{margin:0;color:#6d7787;font-size:13px;line-height:1.85}
.director-message{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:30px;
  background:linear-gradient(145deg,#0b356f,#0d427f);
  border-radius:24px;
  padding:28px;
  color:#fff;
  box-shadow:0 20px 44px rgba(10,38,72,.18);
}
.director-message__media img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
}
.director-message__content .eyebrow{color:#f3cc73}
.director-message__content h2{margin:0 0 8px;font-size:32px;line-height:1.35}
.director-message__role{color:#dfe9f8;font-weight:800;margin-bottom:18px}
.director-message__content p{margin:0 0 16px;color:#ecf2fb}
.goals-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.goal-card{
  background:#fff;
  border:1px solid #edf0f5;
  border-top:4px solid var(--gold);
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 28px rgba(10,38,72,.06);
}
.goal-card h3{margin:0 0 10px;color:var(--blue);font-size:19px;line-height:1.6}
.goal-card p{margin:0;color:#667085}
.about-cta{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  background:linear-gradient(135deg,#fffaf0,#ffffff 42%,#f8fbff);
  border:1px solid #edf0f5;
  border-radius:22px;
  padding:30px 34px;
  box-shadow:0 16px 34px rgba(10,38,72,.07);
  position:relative;
  overflow:hidden;
}
.about-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(255,255,255,.88),rgba(255,255,255,.62)),
    var(--pattern-image) center/430px auto repeat;
  opacity:.34;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.75) 62%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.75) 62%,transparent 100%);
  pointer-events:none;
}
.about-cta > *{position:relative;z-index:1}
.about-cta h2{margin:0 0 10px;color:var(--blue);font-size:30px;line-height:1.4}
.about-cta p{margin:0;color:#6a7484}
.about-cta__actions{display:flex;align-items:center}
.trustees-groups{
  display:grid;
  gap:22px;
}
.trustees-row{
  display:grid;
  gap:20px;
  justify-content:center;
}
.trustees-row--1{
  grid-template-columns:minmax(0,300px);
}
.trustees-row--2{
  grid-template-columns:repeat(3,minmax(220px,260px));
}
.trustees-row--3{
  grid-template-columns:repeat(3,minmax(220px,260px));
}
.trustee-card{
  width:100%;
  max-width:260px;
  justify-self:center;
  background:#fff;
  border:1px solid #edf0f5;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(10,38,72,.07);
}
.trustees-row--1 .trustee-card{max-width:300px}
.trustee-card__image{
  height:auto;
  display:grid;
  place-items:center;
  overflow:hidden;
  padding:12px;
  background:#f5f7fa;
}
.trustees-row--1 .trustee-card__image{height:auto;}
.trustee-card__image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
  border-radius:6px;
}
.trustee-card__body{position:relative;z-index:1;padding:14px 14px 16px;text-align:center;background:#fff}
.trustee-card__body h3{margin:0 0 6px;color:var(--blue);font-size:16px;line-height:1.55}
.trustee-card__body p{margin:0;color:#7a8394;font-size:14px;font-weight:800}
.table-like{border:1px solid #dfe4ed;border-radius:14px;overflow:hidden;background:#fff}
.row{display:grid;grid-template-columns:260px 1fr;border-bottom:1px solid #e5e9f0}
.row:last-child{border-bottom:0}
.row div{padding:18px}
.row div:first-child{background:#f6f8fb;font-weight:900;color:var(--blue)}
.form{background:#fff;border:1px solid #edf0f5;border-radius:16px;padding:28px;box-shadow:var(--shadow)}
.input{width:100%;border:1px solid #dfe4ed;border-radius:8px;padding:14px;margin-bottom:14px;font-family:inherit;direction: rtl;}
textarea.input{min-height:150px;resize:vertical}
.mobile-nav{display:none}
@media(max-width:980px){
  .nav,.actions{display:none}
  .menu-btn{
    display:grid;
    place-items:center;
    flex:0 0 auto;
    order:1;
    width:52px;
    height:52px;
    border-radius:18px;
    background:#fff;
    border:1px solid #e4eaf3;
    box-shadow:0 12px 28px rgba(10,38,72,.08);
  }
  .quick-grid,.values-grid,.stats{grid-template-columns:repeat(2,1fr)}
  .projects-grid,.news-grid,.content-grid,.partner-logos{grid-template-columns:repeat(2,1fr)}
  .about-card,.news-layout,.partners,.contact-strip,.footer-main{grid-template-columns:1fr}
  .about-history,.director-message,.about-cta,.about-vision-grid{grid-template-columns:1fr}
  .governance-grid{grid-template-columns:1fr}
  .about-values-grid,.goals-grid{grid-template-columns:repeat(2,1fr)}
  .trustees-row--2,
  .trustees-row--3{grid-template-columns:repeat(2,minmax(220px,260px))}
  .about-history__media .image-frame img{height:380px}
  .topbar{
    padding:10px 0 8px;
    border-bottom:0;
  }
  .header-shell{gap:0}
  .header-brandline{
    align-items:center;
    justify-content:space-between;
    gap:16px;
    min-height:74px;
    padding:10px 0 4px;
  }
  .header-login{display:none}
  .header-brand-actions{
    display:none;
  }
  .logo{
    flex:1 1 auto;
    justify-content:flex-start;
    min-width:0;
  }
  .logo img{
    width:276px;
    max-width:100%;
    height:72px;
  }
  .nav-panel{
    display:none;
  }
  .hero h1{font-size:34px}
  .hero:before{background:
    linear-gradient(90deg,rgba(255,255,255,.38),rgba(255,255,255,.9) 52%,rgba(255,255,255,.24)),
    var(--pattern-image) center top/720px auto repeat;
    opacity:.58;
  }
  .page-hero::before,
  .footer::before{opacity:.08}
  .section-title--pattern::before{opacity:.08}
  .mobile-nav.open{
    display:grid;
    position:fixed;
    inset:92px 14px auto 14px;
    background:#fff;
    border:1px solid #e6ebf2;
    border-radius:22px;
    padding:18px 20px;
    z-index:50;
    gap:12px;
    box-shadow:0 18px 40px rgba(10,38,72,.12);
  }
  .mobile-nav.open a{
    padding:8px 0;
    color:#243553;
    font-weight:800;
  }
  .footer-topbar{
    border-radius:30px;
    flex-direction:column-reverse;
    align-items:stretch;
    padding:18px;
  }
  .footer-topbar__nav{
    gap:18px 26px;
  }
  .footer-call{
    align-self:flex-start;
    font-size:20px;
  }
  .footer-main{
    border-radius:24px;
  }
  .footer-column{
    border-right:0;
    border-top:1px solid rgba(30,49,86,.10);
  }
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
  .accessibility-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:620px){
  .container{width:min(100% - 28px,1180px)}
  .quick-grid,.values-grid,.stats,.projects-grid,.news-grid,.content-grid,.partner-logos{grid-template-columns:1fr}
  .about-values-grid,.goals-grid{grid-template-columns:1fr}
  .trustees-row--1,
  .trustees-row--2,
  .trustees-row--3{grid-template-columns:minmax(0,300px)}
  .about-history__copy,.about-panel,.goal-card,.trustee-card__body,.about-cta{padding:22px}
  .trustee-card__body{padding:14px 14px 16px}
  .director-message{padding:20px}
  .governance-card,
  .policy-single__card{padding:24px}
  .policy-single__header h2{font-size:28px}
  .policy-content{font-size:16px}
  .director-message__content h2,.about-cta h2,.about-history__copy h2{font-size:27px}
  .about-history__media .image-frame img,.director-message__media img{min-height:300px;height:300px}
  .row{grid-template-columns:1fr}
  .hero{min-height:520px}
  .hero-content{min-height:520px}
  .hero h1{font-size:29px}
  .page-hero h1{font-size:32px}
  .hero:before,
  .page-hero::before{opacity:.05}
  .about-cta::before,
  .section-title--pattern::before,
  .footer::before{opacity:.06}
  .topbar{
    padding-top:8px;
    padding-bottom:6px;
  }
  .header-shell{gap:0}
  .header-brandline{
    min-height:68px;
    gap:12px;
    padding:8px 0 2px;
  }
  .logo img{
    width:276px;
    height:64px;
  }
  .menu-btn{
    width:48px;
    height:48px;
    border-radius:16px;
  }
  .menu-btn svg{
    width:21px;
    height:21px;
  }
  .mobile-nav.open{
    inset:82px 12px auto 12px;
    border-radius:20px;
    padding:16px 18px;
  }
  .footer-shell{padding-top:28px}
  .footer-topbar{
    gap:16px;
    padding:16px 14px;
  }
  .footer-topbar__nav{
    flex-direction:column;
    align-items:center;
    gap:14px;
  }
  .footer-topbar__nav a{font-size:17px}
  .footer-call{
    width:100%;
    justify-content:center;
    min-height:52px;
    font-size:18px;
  }
  .footer-brand,
  .footer-column{
    padding:26px 20px;
  }
  .footer-column h4{font-size:18px}
  .accessibility-widget{
      left:14px;
      right:auto;
      bottom:88px;
    }
  .accessibility-widget__trigger{
      width:72px;
      height:72px;
      min-width:auto;
      padding:0;
      border-radius:24px;
      margin-bottom: 10px;
    }
  .accessibility-widget__trigger-copy{display:none}
  .accessibility-widget__trigger-icon{
      width:48px;
    height:48px;
  }
  .accessibility-panel{
    width:100%;
    padding:14px 14px 24px;
  }
  .accessibility-panel__header{
    padding:18px;
    border-radius:22px;
  }
  .accessibility-panel__header h2{font-size:25px}
  .accessibility-grid,
  .accessibility-grid--compact{
    grid-template-columns:1fr 1fr;
  }
  .accessibility-card{
    min-height:128px;
    border-radius:18px;
  }
  .accessibility-card strong{font-size:16px}
}
@media (max-width:460px){
  .accessibility-grid,
  .accessibility-grid--compact{
    grid-template-columns:1fr;
  }
}

.assistance-hero{
  position:relative;
  overflow:hidden;
  padding:78px 0 62px;
  background:
    linear-gradient(135deg,rgba(11,58,120,.92),rgba(8,43,88,.82)),
    var(--pattern-image) center/620px auto repeat;
  color:#fff;
}
.assistance-hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:34px;
  align-items:center;
}
.assistance-kicker{
  display:inline-flex;
  margin-bottom:12px;
  color:#f0c76a;
  font-weight:900;
}
.assistance-hero h1{
  max-width:780px;
  margin:0;
  font-size:44px;
  line-height:1.45;
}
.assistance-hero p{
  max-width:720px;
  margin:18px 0 0;
  color:#edf4ff;
  font-size:18px;
}
.assistance-hero__panel{
  display:grid;
  gap:12px;
  padding:18px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:8px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}
.assistance-hero__panel div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:8px;
  background:rgba(255,255,255,.14);
}
.assistance-hero__panel strong{color:#fff}
.assistance-hero__panel span{color:#f7e4b5}
.assistance-hero-login,
.assistance-logout{
  width:100%;
  display:grid;
  place-items:center;
  min-height:46px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:8px;
  background:#fff;
  color:var(--blue);
  font:inherit;
  font-weight:900;
  cursor:pointer;
}
.assistance-section{padding:62px 0}
.assistance-service{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:26px;
  align-items:start;
}
.assistance-service__side{
  position:sticky;
  top:126px;
  display:grid;
  gap:10px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
}
.assistance-service__side button{
  width:100%;
  border:0;
  border-right:4px solid transparent;
  border-radius:8px;
  padding:14px 16px;
  background:#f4f1ea;
  color:#3a4354;
  font:inherit;
  font-weight:900;
  text-align:right;
  cursor:pointer;
}
.assistance-service__side button.is-active{
  border-color:linear-gradient(135deg,#cea46f,#b7983a);
  background:linear-gradient(135deg,#cea46f,#b7983a);
  color:#fff;
}
.assistance-service__content{
  min-height:470px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
}
.assistance-tab-panel{display:none}
.assistance-tab-panel.is-active{display:block}
.assistance-tab-panel h2,
.assistance-wizard__step h2,
.assistance-inquiry h2{
  margin:0 0 18px;
  color:var(--blue);
  font-size:28px;
}
.assistance-tab-panel p{
  margin:0 0 24px;
  color:#4f5d73;
  font-size:17px;
}
.assistance-actions-grid,
.assistance-related{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.assistance-action,
.assistance-related a{
  display:grid;
  gap:9px;
  min-height:156px;
  padding:20px;
  border:1px solid #e5eaf1;
  border-radius:8px;
  background:#fbfcfe;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.assistance-action:hover,
.assistance-related a:hover{
  transform:translateY(-3px);
  border-color:rgba(184,138,34,.42);
  box-shadow:0 16px 32px rgba(10,38,72,.1);
}
.assistance-action span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-weight:900;
}
.assistance-action strong,
.assistance-related a{
  color:var(--blue);
  font-weight:900;
}
.assistance-action small{color:#687386;font-size:14px}
.assistance-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.assistance-list li{
  position:relative;
  padding:13px 44px 13px 16px;
  border:1px solid #e8edf4;
  border-radius:8px;
  background:#fbfcfe;
}
.assistance-list li::before{
  content:"";
  position:absolute;
  right:16px;
  top:22px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--gold);
}
.assistance-list--columns{grid-template-columns:repeat(2,minmax(0,1fr))}
.assistance-attachments{
  display:grid;
  gap:42px;
}
.assistance-attachments__section{
  display:grid;
  gap:24px;
}
.assistance-attachments__heading{
  display:flex;
  align-items:center;
  gap:16px;
  padding:0 0 18px;
  border-bottom:1px solid #e7ebf1;
}
.assistance-attachments__heading > span{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:8px;
  background:linear-gradient(145deg,#123f7a,#082f65);
  color:#fff;
  font-size:14px;
  font-weight:900;
  box-shadow:0 12px 24px rgba(11,58,120,.18);
}
.assistance-tab-panel .assistance-attachments__heading h2{
  margin:0 0 4px;
  font-size:25px;
}
.assistance-tab-panel .assistance-attachments__heading p{
  margin:0;
  color:#647084;
  font-size:14px;
  line-height:1.8;
}
.assistance-attachments__basic{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
  counter-reset:basic-attachment;
}
.assistance-attachments__basic li{
  position:relative;
  min-height:128px;
  display:flex;
  align-items:flex-start;
  padding:54px 18px 18px;
  overflow:hidden;
  border:1px solid #e3e9f1;
  border-radius:8px;
  background:linear-gradient(145deg,#fff,#f8fafc);
  color:#344258;
  font-size:14px;
  font-weight:800;
  line-height:1.75;
  counter-increment:basic-attachment;
  box-shadow:0 10px 24px rgba(10,38,72,.05);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.assistance-attachments__basic li::before{
  content:"مستند " counter(basic-attachment,decimal-leading-zero);
  position:absolute;
  top:16px;
  right:18px;
  width:auto;
  height:auto;
  padding:4px 9px;
  border-radius:999px;
  background:#edf3fb;
  color:#31598f;
  font-size:12px;
  font-weight:900;
}
.assistance-attachments__basic li::after{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:3px;
  background:linear-gradient(90deg,var(--gold),rgba(212,165,60,.18));
}
.assistance-attachments__basic li:hover{
  transform:translateY(-3px);
  border-color:rgba(184,138,34,.35);
  box-shadow:0 16px 30px rgba(10,38,72,.09);
}
.assistance-attachment-types{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.assistance-attachment-type{
  display:grid;
  grid-template-columns:50px minmax(0,1fr);
  gap:16px;
  min-height:190px;
  padding:20px;
  border:1px solid #e3e9f1;
  border-radius:8px;
  background:#fff;
  box-shadow:0 10px 26px rgba(10,38,72,.05);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.assistance-attachment-type:hover{
  transform:translateY(-3px);
  border-color:rgba(42,81,144,.24);
  box-shadow:0 16px 32px rgba(10,38,72,.09);
}
.assistance-attachment-type__number{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border:1px solid rgba(184,138,34,.26);
  border-radius:8px;
  background:#fff9ed;
  color:#a37519;
  font-size:14px;
  font-weight:900;
}
.assistance-attachment-type__content{min-width:0}
.assistance-attachment-type__label{
  display:block;
  margin-bottom:2px;
  color:#7b8798;
  font-size:12px;
  font-weight:800;
}
.assistance-attachment-type h3{
  margin:0 0 14px;
  color:var(--blue);
  font-size:18px;
  line-height:1.6;
}
.assistance-attachment-type__requirement{
  padding:12px 14px;
  border-right:3px solid var(--gold);
  border-radius:6px;
  background:#f7f9fc;
}
.assistance-attachment-type__requirement strong{
  display:block;
  margin-bottom:3px;
  color:#44536a;
  font-size:12px;
  font-weight:900;
}
.assistance-tab-panel .assistance-attachment-type__requirement p{
  margin:0;
  color:#536177;
  font-size:14px;
  line-height:1.75;
}
.assistance-journey{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
}
.assistance-journey span{
  min-height:96px;
  display:grid;
  place-items:center;
  padding:16px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:linear-gradient(180deg,#fff,#f7f9fc);
  color:var(--blue);
  font-weight:900;
  text-align:center;
}
.assistance-consent{
  display:flex;
  align-items:center;
  gap:12px;
  margin:24px 0;
  padding:18px 20px;
  border-radius:8px;
  background:#f5f2ed;
  color:#925f54;
  font-weight:900;
}
.assistance-terms-notice{
  margin:0 0 22px;
  padding:18px 20px;
  border:1px solid rgba(184,138,34,.28);
  border-right:4px solid var(--gold);
  border-radius:8px;
  background:#fffaf0;
  color:#3f4b5f;
}
.assistance-terms-notice strong{
  display:block;
  margin-bottom:8px;
  color:#8a6215;
  font-size:17px;
  font-weight:900;
}
.assistance-terms-notice ul{
  display:grid;
  gap:6px;
  margin:0;
  padding:0 20px 0 0;
}
.assistance-terms-notice li{line-height:1.8}
.assistance-consent input{width:22px;height:22px;accent-color:var(--gold)}
.assistance-consent--compact{
  margin:4px 0 8px;
  padding:10px 12px;
}
.assistance-confirm.is-disabled{
  pointer-events:none;
  opacity:.48;
  filter:grayscale(.35);
}
.assistance-wizard{
  display:grid;
  gap:26px;
}
.assistance-stepper{
  display:grid;
  grid-template-columns:repeat(7,minmax(100px,1fr));
  gap:0;
  align-items:start;
  overflow-x:auto;
  padding:0 4px 12px;
}
.assistance-wizard--compact .assistance-stepper{grid-template-columns:repeat(5,minmax(130px,1fr))}
.assistance-stepper button{
  position:relative;
  min-width:118px;
  border:0;
  padding:0 8px;
  background:transparent;
  color:#1f2937;
  font:inherit;
  cursor:pointer;
}
.assistance-stepper button::before{
  content:"";
  position:absolute;
  top:24px;
  right:0;
  left:0;
  height:4px;
  background:#8a8a8a;
  z-index:0;
}
.assistance-stepper span{
  position:relative;
  z-index:1;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin:0 auto 8px;
  border:4px solid #8e8585;
  border-radius:50%;
  background:#fff;
  color:#5f6570;
  font-size:22px;
  font-weight:900;
}
.assistance-stepper strong{
  display:block;
  color:#0f172a;
  font-size:17px;
  white-space:nowrap;
}
.assistance-stepper button.is-active span{
  border-color:var(--gold);
  background:var(--gold);
  color:#fff;
}
.assistance-stepper button.is-active strong{color:var(--gold)}
.assistance-wizard__body{
  padding:28px;
  border:1px solid #dfe4ed;
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
}
.assistance-wizard__step{display:none}
.assistance-wizard__step.is-active{display:block}
.assistance-form-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px 28px;
}
.assistance-form-grid label,
.assistance-inquiry__form label{
  display:grid;
  gap:7px;
  color:#26344d;
  font-size:13px;
  font-weight:800;
}
.assistance-form-grid input,
.assistance-form-grid select,
.assistance-form-grid textarea,
.assistance-inquiry__form input{
  width:100%;
  min-height:42px;
  border:1px solid #cfd7e3;
  border-radius:5px;
  padding:10px 12px;
  background:#fff;
  color:#1f2937;
  font:inherit;
}
.assistance-form-grid textarea{resize:vertical}
.assistance-field-wide{grid-column:span 2}
.assistance-note{
  margin:0 0 20px;
  color:#e11d48;
  text-align:center;
}
.assistance-step-heading{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  margin-bottom:16px;
}
.assistance-icon-btn{
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}
.assistance-table-wrap{overflow:auto}
.assistance-table{
  width:100%;
  min-width:980px;
  border-collapse:collapse;
}
.assistance-table th,
.assistance-table td{
  padding:14px 12px;
  border-bottom:1px solid #dce2ea;
  text-align:right;
  vertical-align:top;
}
.assistance-table th{color:#1f2937;font-weight:900}
.assistance-table tbody tr:nth-child(odd){background:#f1f1f1}
.assistance-table button{
  border:1px solid #fecaca;
  border-radius:6px;
  padding:6px 10px;
  background:#fff1f2;
  color:#be123c;
  cursor:pointer;
}
.assistance-table input,
.assistance-table select{
  width:100%;
  min-width:120px;
  border:1px solid #cfd7e3;
  border-radius:5px;
  padding:8px 10px;
  background:#fff;
  font:inherit;
}
.assistance-upload-list{
  display:grid;
  gap:12px;
}
.assistance-upload{
  display:grid;
  grid-template-columns:minmax(180px,1fr) 210px;
  gap:16px;
  align-items:center;
  padding:13px 16px;
  border:1px solid #e3e8f0;
  border-radius:8px;
  background:#fbfcfe;
}
.assistance-upload span{font-weight:900;color:#243553}
.assistance-upload input{width:100%}
.assistance-upload em{color:#64748b;font-style:normal;font-size:13px}
.assistance-choice-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.assistance-choice-grid label{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:96px;
  padding:18px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.assistance-choice-grid input{accent-color:var(--gold);width:20px;height:20px}
.assistance-wizard__footer{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:28px;
}
.assistance-success{
  margin-top:18px;
  padding:16px 18px;
  border:1px solid #bbf7d0;
  border-radius:8px;
  background:#f0fdf4;
  color:#166534;
  font-weight:900;
}
.assistance-error{
  margin-top:18px;
  padding:16px 18px;
  border:1px solid #fecaca;
  border-radius:8px;
  background:#fff1f2;
  color:#be123c;
  font-weight:900;
}
.assistance-flash{
  margin:0 0 18px;
}
.assistance-auth{
  display:grid;
  place-items:center;
  padding-block:10px;
}
.assistance-auth__card{
  width:min(100%,440px);
  display:grid;
  gap:14px;
  padding:28px 24px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 42px rgba(10,38,72,.08);
}
.assistance-auth__card h2{
  margin:0 0 4px;
  color:var(--blue);
  font-size:26px;
  line-height:1.35;
}
.assistance-auth__card label{
  display:grid;
  gap:7px;
  color:#26344d;
  font-weight:900;
}
.assistance-auth__card input{
  width:100%;
  min-height:42px;
  border:1px solid #cfd7e3;
  border-radius:5px;
  padding:10px 12px;
  font:inherit;
}
.assistance-auth__card .btn{
  min-height:44px;
  justify-content:center;
  border-radius:7px;
}
.assistance-remember{
  display:flex !important;
  align-items:center;
  justify-content:flex-start;
  flex-direction:row-reverse;
  width:max-content;
  max-width:100%;
  gap:9px !important;
  margin:2px 0 4px;
  padding:0;
  color:#334155;
  font-size:14px;
  font-weight:800;
}
.assistance-auth__card .assistance-remember input{
  width:18px;
  min-width:18px;
  height:18px;
  min-height:18px;
  padding:0;
  margin:0;
  accent-color:var(--gold);
}
.assistance-auth__link{
  color:var(--blue);
  font-weight:900;
  text-align:center;
  font-size:14px;
}
.assistance-inquiry{
  display:grid;
  grid-template-columns:420px minmax(0,1fr);
  gap:26px;
  align-items:start;
}
.assistance-inquiry__form,
.assistance-inquiry__result{
  display:grid;
  gap:16px;
  padding:28px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
}
.assistance-inquiry__result dl{
  display:grid;
  gap:12px;
  margin:0;
}
.assistance-request-card{
  display:grid;
  gap:12px;
  padding:18px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
}
.assistance-request-card h3{
  margin:0;
  color:var(--blue);
}
.assistance-inquiry__result dl div{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:14px;
  padding:14px;
  border-radius:8px;
  background:#f8fafc;
}
.assistance-inquiry__result dt{font-weight:900;color:var(--blue)}
.assistance-inquiry__result dd{margin:0;color:#475569}
.assistance-status{
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:#fff7ed;
  color:#b45309;
  font-weight:900;
}
@media(max-width:1100px){
  .assistance-hero__inner,
  .assistance-service,
  .assistance-inquiry{grid-template-columns:1fr}
  .assistance-service__side{position:static;grid-template-columns:repeat(3,minmax(0,1fr))}
  .assistance-form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .assistance-actions-grid,
  .assistance-related,
  .assistance-journey{grid-template-columns:repeat(2,minmax(0,1fr))}
  .assistance-attachments__basic{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .assistance-hero{padding:54px 0 44px}
  .assistance-hero h1{font-size:30px}
  .assistance-service__content,
  .assistance-wizard__body,
  .assistance-inquiry__form,
  .assistance-inquiry__result{padding:20px}
  .assistance-service__side,
  .assistance-form-grid,
  .assistance-actions-grid,
  .assistance-related,
  .assistance-journey,
  .assistance-list--columns,
  .assistance-choice-grid{grid-template-columns:1fr}
  .assistance-field-wide{grid-column:auto}
  .assistance-upload{grid-template-columns:1fr}
  .assistance-wizard__footer{flex-direction:column}
  .assistance-wizard__footer .btn{justify-content:center}
  .assistance-inquiry__result dl div{grid-template-columns:1fr}
  .assistance-attachments{gap:28px}
  .assistance-attachments__basic,
  .assistance-attachment-types{grid-template-columns:1fr}
  .assistance-attachments__heading{gap:12px}
  .assistance-attachments__heading > span{width:44px;height:44px}
  .assistance-tab-panel .assistance-attachments__heading h2{font-size:21px}
  .assistance-attachments__basic li{min-height:110px}
  .assistance-attachment-type{grid-template-columns:44px minmax(0,1fr);min-height:0;padding:16px}
  .assistance-attachment-type__number{width:44px;height:44px}
}

.tbarakto-hero{
  padding:86px 0 70px;
  background:
    linear-gradient(135deg,rgba(6,44,95,.92),rgba(184,138,34,.62)),
    var(--pattern-image) center/680px auto repeat;
  color:#fff;
}
.tbarakto-hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:32px;
  align-items:center;
}
.tbarakto-kicker{
  color:#ffe7a6;
  font-weight:900;
}
.tbarakto-hero h1{
  margin:8px 0 12px;
  font-size:62px;
  line-height:1.2;
}
.tbarakto-hero p{
  max-width:760px;
  margin:0;
  color:#f8fbff;
  font-size:19px;
}
.tbarakto-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.tbarakto-hero__card{
  padding:24px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:8px;
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(10px);
}
.tbarakto-hero__card strong{
  display:block;
  margin-bottom:10px;
  color:#ffe7a6;
  font-size:20px;
}
.tbarakto-section{
  padding:64px 0;
}
.tbarakto-section--soft{
  background:#f8fafc;
}
.tbarakto-layout{
  display:grid;
  grid-template-columns:420px minmax(0,1fr);
  gap:24px;
}
.tbarakto-panel,
.tbarakto-form__section,
.tbarakto-request-card{
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 34px rgba(10,38,72,.08);
}
.tbarakto-panel,
.tbarakto-form__section{
  padding:26px;
}
.tbarakto-panel h2,
.tbarakto-form__section h2,
.tbarakto-conditions h2{
  margin:0 0 14px;
  color:var(--blue);
  font-size:26px;
}
.tbarakto-panel p{
  margin:0;
  color:#536177;
}
.tbarakto-goals{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.tbarakto-goals article{
  display:grid;
  gap:10px;
  padding:18px;
  border:1px solid #e5eaf1;
  border-radius:8px;
  background:#fff;
}
.tbarakto-goals span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-weight:900;
}
.tbarakto-goals p{margin:0;color:#435168}
.tbarakto-conditions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.tbarakto-conditions article{
  padding:26px;
  border-radius:8px;
  background:#fff;
  border:1px solid #e2e8f0;
}
.tbarakto-conditions li{
  margin-bottom:9px;
}
.tbarakto-form{
  display:grid;
  gap:18px;
}
.tbarakto-type{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.tbarakto-type label{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:78px;
  padding:16px;
  border:1px solid #dbe3ee;
  border-radius:8px;
  cursor:pointer;
  font-weight:900;
}
.tbarakto-type input{
  width:20px;
  height:20px;
  accent-color:var(--gold);
}
.tbarakto-request-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.tbarakto-request-card{
  display:grid;
  gap:8px;
  padding:20px;
}
.tbarakto-request-card span{
  width:max-content;
  padding:7px 12px;
  border-radius:999px;
  background:#fff7ed;
  color:#b45309;
  font-weight:900;
}
.tbarakto-request-card h2{
  margin:0;
  color:var(--blue);
}
.tbarakto-request-card p,
.tbarakto-request-card small{
  margin:0;
  color:#64748b;
}
.tbarakto-detail{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
  gap:22px;
}
.tbarakto-dl{
  display:grid;
  gap:12px;
  margin:18px 0 0;
}
.tbarakto-dl div{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:12px;
  padding:12px;
  border-radius:8px;
  background:#f8fafc;
}
.tbarakto-dl dt{font-weight:900;color:var(--blue)}
.tbarakto-dl dd{margin:0;color:#475569}
.tbarakto-file{
  display:block;
  padding:12px 14px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  color:var(--blue);
  font-weight:900;
}
@media(max-width:1000px){
  .tbarakto-hero__inner,
  .tbarakto-layout,
  .tbarakto-detail{grid-template-columns:1fr}
  .tbarakto-request-list{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:680px){
  .tbarakto-hero h1{font-size:42px}
  .tbarakto-goals,
  .tbarakto-conditions,
  .tbarakto-type,
  .tbarakto-request-list{grid-template-columns:1fr}
  .tbarakto-dl div{grid-template-columns:1fr}
}

.eligibility-section{
  padding:64px 0;
  background:#f8fafc;
}
.eligibility-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:24px;
  align-items:start;
}
.eligibility-form{
  display:grid;
  gap:18px;
}
.eligibility-card,
.eligibility-result{
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 34px rgba(10,38,72,.08);
}
.eligibility-card{
  padding:24px;
}
.eligibility-card-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.eligibility-card-title span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#eef5ff;
  color:var(--blue);
  font-weight:900;
}
.eligibility-card h2,
.eligibility-result h2{
  margin:0;
  color:var(--blue);
  font-size:24px;
}
.eligibility-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.eligibility-grid label{
  display:grid;
  gap:7px;
  color:#26344d;
  font-size:13px;
  font-weight:900;
}
.eligibility-grid input,
.eligibility-grid select{
  min-height:42px;
  border:1px solid #cfd7e3;
  border-radius:5px;
  padding:10px 12px;
  background:#fff;
  font:inherit;
}
.eligibility-submit{
  justify-content:center;
  min-height:48px;
  border-radius:8px;
}
.eligibility-result{
  position:sticky;
  top:130px;
  display:grid;
  gap:14px;
  padding:26px;
}
.eligibility-result span{
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:#e0f2fe;
  color:#075985;
  font-weight:900;
}
.eligibility-result.is-eligible span{
  background:#dcfce7;
  color:#166534;
}
.eligibility-result.is-not_eligible span{
  background:#fee2e2;
  color:#991b1b;
}
.eligibility-result dl{
  display:grid;
  gap:10px;
  margin:0;
}
.eligibility-result dl div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px;
  border-radius:8px;
  background:#f8fafc;
}
.eligibility-result dt{
  font-weight:900;
  color:#334155;
}
.eligibility-result dd{
  margin:0;
  color:var(--blue);
  font-weight:900;
}
.eligibility-result p{
  margin:0;
  color:#64748b;
  font-size:14px;
}
@media(max-width:1050px){
  .eligibility-layout{grid-template-columns:1fr}
  .eligibility-result{position:static}
}
@media(max-width:760px){
  .eligibility-grid{grid-template-columns:1fr}
}
