:root {
  --font-ar: "Noto Sans Arabic", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Noto Sans", "Segoe UI", Tahoma, sans-serif;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --accent: #0d9488;
  --accent-light: rgba(13, 148, 136, 0.12);
  --text-primary: #1f2933;
  --text-secondary: #4d5b66;
  --border: #e1e7ec;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-ar);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(140deg, rgba(13, 148, 136, 0.85), rgba(23, 37, 84, 0.92)), url('https://images.unsplash.com/photo-1580894897406-7ad0d1bfd298?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #f8fafc;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  opacity: 0.15;
  z-index: -1;
}

.hero__badge {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  align-self: center;
}

.hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  color: #caffe8;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.hero__meta {
  margin: 0;
  font-size: 0.95rem;
  color: #e0f2f1;
}

.container {
  width: min(960px, 92vw);
  margin: -2.5rem auto 4rem;
  display: grid;
  gap: 1.75rem;
}

.card {
  background-color: var(--surface);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card h2,
.card h3,
.card h4 {
  margin-top: 0;
  font-weight: 700;
}

.card ul {
  padding: 0 1.25rem;
  margin: 0.75rem 0 0;
}

.card ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: start;
}

th {
  background-color: var(--accent-light);
  color: #0f172a;
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

.callout {
  background-color: var(--accent-light);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.callout h3,
.callout h4 {
  margin: 0 0 0.5rem;
}

.callout ul {
  margin: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.contact-list span {
  font-weight: 600;
  color: var(--text-primary);
  display: inline-block;
  min-width: 80px;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  opacity: 0.5;
}

.divider span {
  font-size: 1.5rem;
}

.dual-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dual-header h2 {
  margin: 0;
}

.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[lang="en"] {
  font-family: var(--font-en);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__badge {
    justify-self: center;
  }

  th,
  td {
    padding-inline: 0.75rem;
  }

  .contact-list span {
    min-width: auto;
    margin-inline-end: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
