:root {
  --primary: #144f93;
  --primary-light: #1a6bc7;
  --gold: #f4b31b;
  --dark: #0d1b2a;
  --text: #374151;
  --text-light: #6b7280;
  --bg: #f8faff;
  --white: #ffffff;
  --border: #e5e7eb;
  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Outfit", sans-serif;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1.875rem;
  font-weight: 700;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
h5 {
  font-size: 1.25rem;
  font-weight: 600;
}
h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--secondary-color);
}

.pt--80 {
  padding-top: 30px;
}

.pb--80 {
  padding-bottom: 30px;
}

/* ---- HEADER ---- */
.policy-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background-image: url(../images/banners/banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.policy-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(244, 179, 27, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.policy-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.policy-header .breadcrumb-wrap {
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.policy-header .breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.policy-header .breadcrumb-wrap a:hover {
  color: var(--gold);
}

.policy-header .breadcrumb-wrap span {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.policy-header .breadcrumb-wrap .current {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.policy-header h1 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.policy-header h1 span {
  color: var(--gold);
}

.policy-header .effective-date {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.policy-header .effective-date strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ---- MAIN LAYOUT ---- */
.policy-body {
  padding: 60px 0 80px;
}

.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ---- SIDEBAR TOC ---- */
.policy-toc {
  position: sticky;
  top: 30px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  width: 270px;
}

.policy-toc ul {
  padding-left: 0px;
}

.policy-toc h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toc-list li a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s;
  line-height: 1.4;
  font-family: var(--font-secondary);
}

.toc-list li a:hover,
.toc-list li a.active {
  background: rgba(20, 79, 147, 0.08);
  color: var(--primary);
  font-weight: 500;
}

/* ---- CONTENT ---- */
.policy-content {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  border: 1px solid var(--border);
}

/* Intro box */
.policy-intro {
  background: linear-gradient(
    135deg,
    rgba(20, 79, 147, 0.06) 0%,
    rgba(244, 179, 27, 0.06) 100%
  );
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.8;
}

/* Section */
.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-section h2 .section-num {
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: var(--font-secondary);
  font-weight: 600;
  flex-shrink: 0;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.25rem 0 0.6rem;
}

.policy-section p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  padding-left: 0;
  list-style: none;
  margin: 0.75rem 0;
}

.step-item{
      display: flex;
    gap: 10px;
}

.policy-section ul li {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  font-family: var(--font-secondary);
}

.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.right-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.right-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(20, 79, 147, 0.1);
}

.right-card .right-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.right-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Contact card */
.contact-card {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  margin-top: 1rem;
}

.contact-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-card .contact-items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-family: var(--font-secondary);
}

.contact-card .contact-items svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

/* =====================
       RESPONSIVE
    ===================== */
@media (max-width: 992px) {
  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: relative;
    top: 0;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .policy-header {
    padding: 60px 0 40px;
  }

  .policy-content {
    padding: 1.5rem 1rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .policy-body {
    padding: 30px 0 50px;
  }
}
