/* ===============================
   MyClassX Policy Pages (common)
   One CSS for all policy pages
   =============================== */

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #ffffff;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Space for fixed navbar */
.page-spacer {
  height: 90px;
}

/* Page container */
.policy-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 5% 80px;
}

/* Header block */
.policy-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  border: 1px solid rgba(38, 82, 171, 0.12);
  border-radius: 14px;
  padding: 28px 26px;
  margin-bottom: 26px;
}

.policy-brand {
  font-family: 'Quintessential', cursive;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #000;
}

.policy-brand .x {
  color: rgb(38, 82, 171);
}

.policy-title {
  margin-top: 6px;
  font-family: 'Quintessential', cursive;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgb(38, 82, 171);
}

.policy-meta {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
}

/* Content typography */
.policy-content {
  line-height: 1.9;
  font-size: 1.05rem;
  color: #161616;
}

.policy-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: #0b1b3a;
  letter-spacing: 0.3px;
}

.policy-content p {
  margin: 10px 0 0;
}

.policy-content ul {
  margin: 10px 0 0 18px;
  padding-left: 10px;
}

.policy-content li {
  margin: 6px 0;
}

/* Highlight info card */
.policy-note {
  background: #f5f7ff;
  border: 1px solid rgba(38, 82, 171, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
}

/* Simple link style */
.policy-content a {
  color: rgb(38, 82, 171);
  text-decoration: none;
  border-bottom: 1px dashed rgba(38, 82, 171, 0.45);
}
.policy-content a:hover {
  border-bottom-style: solid;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-title { font-size: 2rem; }
  .policy-brand { font-size: 1.9rem; }
  .policy-page { padding-top: 20px; }
}
