:root {
  --navy: #0A2A6E;
  --nd: #061A4A;
  --blue: #1565C0;
  --orange: #F57C00;
  --ob: #FF6D00;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --red: #DC2626;
  --red-light: #FEF2F2;
  --white: #fff;
  --off: #F8F9FF;
  --text: #0D1B3E;
  --mid: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --s1: 0 2px 8px rgba(10, 42, 110, .08);
  --s2: 0 4px 20px rgba(10, 42, 110, .12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: var(--blue);
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}



/* LAYOUT */
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 124px;
}

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.sidebar-head {
  background: var(--navy);
  padding: 16px 20px;
}

.sidebar-head h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.sidebar-nav {
  padding: 10px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--mid);
  border-radius: 7px;
  transition: all .2s;
  text-decoration: none;
  line-height: 1.4;
}

.sidebar-nav a:hover {
  background: var(--off);
  color: var(--navy);
}

.sidebar-nav a.active {
  background: rgba(10, 42, 110, .07);
  color: var(--navy);
  font-weight: 600;
}

.sidebar-nav a .num {
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.sidebar-nav a.active .num {
  background: var(--navy);
  color: #fff;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--nd), #1B2B5E);
  border-radius: 12px;
  padding: 18px 16px;
  margin-top: 16px;
  text-align: center;
}

.sidebar-cta h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.sidebar-cta p {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 12px;
  line-height: 1.6;
}

.sidebar-cta a.btn {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--ob));
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  margin-bottom: 8px;
}

.sidebar-cta a.wa {
  display: block;
  background: rgba(37, 211, 102, .15);
  color: #25D366;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, .25);
}

/* CONTENT */
.policy-intro {
  background: rgba(10, 42, 110, .04);
  border: 1.5px solid rgba(10, 42, 110, .1);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 40px;
}

.policy-intro p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.8;
}

.policy-intro strong {
  color: var(--text);
}

/* AT A GLANCE — Summary cards */
.glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.glance-card {
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.glance-card.eligible {
  background: var(--green-light);
  border: 1.5px solid rgba(22, 163, 74, .25);
}

.glance-card.not-eligible {
  background: var(--red-light);
  border: 1.5px solid rgba(220, 38, 38, .2);
}

.glance-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.glance-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.glance-card.eligible h4 {
  color: var(--green);
}

.glance-card.not-eligible h4 {
  color: var(--red);
}

.glance-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.glance-card ul li {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.glance-card.eligible ul li::before {
  content: '✓';
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.glance-card.not-eligible ul li::before {
  content: '✗';
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-section {
  margin-bottom: 48px;
  scroll-margin-top: 124px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.section-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.2px;
}

.policy-section p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 10px;
  font-family: 'Poppins', sans-serif;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
}

.policy-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 8px;
}

/* INFO BOXES */
.info-box {
  border-radius: 10px;
  padding: 16px 18px;
  margin: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-box.blue {
  background: rgba(21, 101, 192, .06);
  border: 1px solid rgba(21, 101, 192, .2);
}

.info-box.green {
  background: rgba(22, 163, 74, .05);
  border: 1px solid rgba(22, 163, 74, .2);
}

.info-box.orange {
  background: rgba(245, 124, 0, .06);
  border: 1px solid rgba(245, 124, 0, .2);
}

.info-box.red {
  background: rgba(220, 38, 38, .05);
  border: 1px solid rgba(220, 38, 38, .15);
}

.info-box .ib-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px 0;
}

.proc-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  position: relative;
}

.proc-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--orange), rgba(245, 124, 0, .1));
}

.ps-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-body {
  padding: 4px 0 36px 20px;
  text-align: left;
}

.ps-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.ps-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* TABLE */
.ref-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  margin: 18px 0;
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ref-table th {
  padding: 13px 18px;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-align: left;
}

.ref-table td {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
  line-height: 1.6;
}

.ref-table tr:nth-child(even) td {
  background: var(--off);
}

.eligible-cell {
  color: var(--green);
  font-weight: 600;
}

.not-eligible-cell {
  color: var(--red);
  font-weight: 600;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  margin: 40px 0;
}



@media(max-width:960px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom:60px;
  }

  .sidebar {
    position: static;
  }

  .glance-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {

  .tb-l {
    display: none;
  }
  
  .ph-meta{
      gap:10px !important;
  }

}