/* ============================================================
   STUDY GRAM EDUCATION — Policy Pages Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* ── Header ────────────────────────────────────────────────── */
.policy-header {
  background: #0f1e36;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.policy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.policy-logo img {
  height: 42px;
  width: auto;
}

.policy-logo-text {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  border-left: 2px solid #1a9c68;
  padding-left: 10px;
  line-height: 1.3;
}

.policy-logo-text small {
  display: block;
  font-weight: 400;
  font-size: .72rem;
  color: #8da6c5;
}

.policy-back {
  color: #a8c4e0;
  font-size: .83rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.policy-back:hover {
  color: #1a9c68;
}

/* ── Hero Banner ────────────────────────────────────────────── */
.policy-hero {
  background: linear-gradient(135deg, #1a2b4a 0%, #1d4f8a 100%);
  color: #fff;
  padding: 64px 24px 52px;
  text-align: center;
}

.policy-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.policy-hero .policy-meta {
  color: #a8c4e0;
  font-size: .85rem;
}

.policy-hero .policy-meta i {
  margin-right: 5px;
}

/* ── Content ────────────────────────────────────────────────── */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.policy-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2b4a;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8ecf4;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  color: #4a5568;
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.policy-content ul li {
  color: #4a5568;
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 5px;
}

.policy-content a {
  color: #1a9c68;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content strong {
  color: #1a2b4a;
}

/* ── Footer ─────────────────────────────────────────────────── */
.policy-footer {
  background: #0f1e36;
  color: #5c7095;
  text-align: center;
  padding: 28px 24px;
  font-size: .82rem;
}

.policy-footer p + p {
  margin-top: 8px;
}

.policy-footer a {
  color: #1a9c68;
  text-decoration: none;
}

.policy-footer a:hover {
  text-decoration: underline;
}

.policy-footer .footer-policy-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: .78rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .policy-hero {
    padding: 44px 16px 36px;
  }
  .policy-content {
    padding: 40px 16px 60px;
  }
}
