/* Privacy policy pages — theme matched to the mohasalah.com landing page. */

:root {
  --bg: #121212;
  --surface: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #2f89fc;
  --heading: #ffffff;
  --text: #b3b3b3;
  --muted: #8c8c8c;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

/* Decorative rotated frames, echoing the landing page. */
body::after,
body::before {
  content: "";
  position: fixed;
  border: 2px solid rgba(255, 255, 255, 0.05);
  z-index: -1;
  pointer-events: none;
}
body::after  { top: -150px; right: -50px; width: 400px; height: 600px; transform: rotate(-30deg); }
body::before { top: 500px; left: -100px; width: 400px; height: 400px; transform: rotate(20deg); }

a { color: var(--accent); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; text-decoration: underline; }

/* Accessibility: visible focus + skip link */
a:focus-visible,
.skip-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #0b0b0b;
  padding: .6em 1em;
  font-weight: 700;
  z-index: 10;
}
.skip-link:focus { left: 1rem; }

.site-header {
  padding: 1.6rem 1.5rem;
  display: flex;
  justify-content: center;
}
.site-header img { width: 120px; max-width: 40%; height: auto; }

.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.8rem clamp(1.4rem, 5vw, 3.2rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
  margin: 0 0 .6rem;
}

h1 {
  color: var(--heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 .4rem;
}

.subtitle { color: var(--muted); margin: 0 0 2rem; font-size: .95rem; }

h2 {
  color: var(--heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 2.4rem 0 .8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.card > section:first-of-type h2 { border-top: 0; padding-top: 0; margin-top: 0; }

p { margin: 0 0 1.1rem; }

ul { margin: 0 0 1.1rem; padding-left: 1.3rem; }
li { margin-bottom: .5rem; }

strong { color: #d9d9d9; font-weight: 600; }

.back {
  display: inline-block;
  margin-top: 2.4rem;
  font-weight: 400;
}
.back::before { content: "\2190\00a0"; }

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
  font-size: .85rem;
}
.site-footer img { width: 46px; display: block; margin: 1rem auto 0; opacity: .85; }
