@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: light;
  font-family: Manrope, "IBM Plex Sans Arabic", system-ui, sans-serif;
  background: #faf8f1;
  color: #12372f;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 162, 39, .13), transparent 25%),
    radial-gradient(circle at 92% 90%, rgba(6, 78, 59, .10), transparent 28%),
    #faf8f1;
}

header, main, footer {
  width: min(920px, calc(100% - 32px));
  margin-inline: auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #064e3b;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}
.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #075e49, #023b2f);
  color: #e5bd47;
  box-shadow: inset 0 0 0 1px rgba(229, 189, 71, .65);
}

nav { display: flex; flex-wrap: wrap; gap: 12px; }
nav a, footer a { color: #075e49; font-weight: 700; }

.hero, article {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(6, 78, 59, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 18px 60px rgba(6, 78, 59, .08);
}

article { margin: 18px 0; }
h1 { margin: 0 0 12px; font-size: clamp(30px, 5vw, 46px); }
h2 { margin: 30px 0 8px; font-size: 22px; color: #064e3b; }
h3 { margin: 22px 0 6px; font-size: 18px; }
p, li { color: #405b54; line-height: 1.75; }
ul { padding-inline-start: 24px; }
.updated { color: #687c76; font-size: 14px; }
.notice {
  padding: 16px 18px;
  border-inline-start: 4px solid #c9a227;
  border-radius: 12px;
  background: #fffaf0;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 14px;
  background: #064e3b;
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.button.secondary { background: #efe5c3; color: #064e3b; }
.arabic { direction: rtl; text-align: right; border-top: 1px solid #dfe8e4; margin-top: 34px; padding-top: 28px; font-family: "IBM Plex Sans Arabic", Manrope, sans-serif; }
.arabic h1, .arabic h2, .arabic h3 { font-weight: 700; line-height: 1.45; }
.arabic p, .arabic li { line-height: 1.95; }
a[href^="mailto:"] { direction: ltr; unicode-bidi: isolate; display: inline-block; }
footer { padding: 28px 0 42px; color: #526861; text-align: center; }

@media (max-width: 700px) {
  header { align-items: flex-start; flex-direction: column; }
}
