/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================= VARIABLES ================= */
:root {
  --primary: #ffcc00;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ================= BODY ================= */
body {
  font-family: "Poppins", sans-serif;
  background: #f8fafc;
  color: var(--text);
  line-height: 1.7;
  padding: 40px 20px;
}

/* ================= CONTAINER ================= */
body > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= HEADINGS ================= */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--dark);
}

h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--dark-light);
}

h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--dark-light);
}

/* ================= TEXT ================= */
p {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ================= LINKS ================= */
a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* ================= LISTS ================= */
ul {
  margin: 15px 0 20px 20px;
}

li {
  margin-bottom: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ================= STRONG ================= */
strong {
  color: var(--dark);
  font-weight: 600;
}

/* ================= BOX SECTIONS ================= */
ul li p {
  background: var(--white);
  padding: 12px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 8px;
}

/* ================= LAST UPDATED ================= */
p:first-of-type {
  background: #fff;
  padding: 10px 15px;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* ================= SEPARATION ================= */
h2:not(:first-of-type) {
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

/* ================= SCROLL UX ================= */
html {
  scroll-behavior: smooth;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  body {
    padding: 25px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p,
  li {
    font-size: 0.9rem;
  }
}

/* ================= PREMIUM TOUCH ================= */
body::before {
  content: "";
  position: fixed;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.15), transparent 70%);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 71, 99, 0.1), transparent 70%);
  z-index: -1;
}