@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");

:root {
  color-scheme: light;
  --brand: #032179;
  --brand-soft: #eef2ff;
  --ink: #172033;
  --muted: #5f6878;
  --line: #dfe4ee;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7f8fb;
  color: var(--ink);
  font-family: "Tajawal", sans-serif;
  line-height: 1.9;
}
html[dir="ltr"] body { font-family: "Tajawal", Arial, sans-serif; }
html[dir="ltr"] .card ul { padding-right: 0; padding-left: 22px; }
html[dir="ltr"] .notice { border-right: 0; border-left: 4px solid var(--brand); }
a { color: var(--brand); }
.site-header { background: var(--brand); color: #fff; }
.header-inner, .page-shell, .site-footer {
  width: min(940px, calc(100% - 32px));
  margin-inline: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}
.site-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav a { color: #fff; text-decoration: none; }
.page-shell { padding-block: 56px; }
.hero { margin-bottom: 28px; }
.eyebrow { color: var(--brand); font-weight: 700; }
h1 {
  margin: 4px 0 12px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.25;
}
.lead { max-width: 760px; color: var(--muted); font-size: 18px; }
.card {
  margin-bottom: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(26, 38, 68, 0.06);
}
.card h2 { margin-top: 0; color: var(--brand); font-size: 23px; }
.card ul { margin: 0; padding-right: 22px; }
.card li { margin-block: 6px; }
.notice {
  padding: 18px 20px;
  background: var(--brand-soft);
  border-right: 4px solid var(--brand);
  border-radius: 12px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-item {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-label { display: block; color: var(--muted); font-size: 14px; }
.contact-value { display: block; margin-top: 4px; font-weight: 700; }
.site-footer {
  padding-block: 28px 40px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}
@media (max-width: 680px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }
  .page-shell { padding-block: 36px; }
  .card { padding: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
}
