:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-deeper: #0c4a6e;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --text-dark: #0f172a;
      --text-mid: #1e3a5f;
      --text-muted: #475569;
      --accent-gold: #f59e0b;
      --border-color: #7dd3fc;
      --card-radius: 16px;
      --shadow-sm: 0 2px 12px rgba(14,165,233,0.10);
      --shadow-md: 0 6px 32px rgba(14,165,233,0.16);
      --shadow-lg: 0 16px 48px rgba(14,165,233,0.22);
    }

*, *::before, *::after { box-sizing: border-box; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      margin: 0; padding: 0;
      line-height: 1.85;
    }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: #bae6fd;
      border-bottom: 2px solid #7dd3fc;
      padding: 10px 0;
    }

.breadcrumb { margin: 0; background: none; padding: 0; }

.breadcrumb-item a { color: var(--primary-dark); text-decoration: none; font-weight: 500; }

.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-item.active { color: var(--text-mid); font-weight: 600; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, #0ea5e9, #22c55e, #0ea5e9);
      opacity: 0.5;
    }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
      padding: 80px 0 70px;
      position: relative; overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: #bae6fd; padding: 6px 18px;
      border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
    }

.page-hero h1 {
      color: #fff;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700; line-height: 1.3; margin-bottom: 18px;
    }

.page-hero .lead { color: #bae6fd; font-size: 1rem; max-width: 620px; }

.hero-meta {
      display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px;
    }

.hm-item {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12);
      padding: 8px 16px; border-radius: 50px;
      color: #e0f2fe; font-size: 0.88rem; font-weight: 500;
    }

.hm-item i { color: #fbbf24; }

/* ── SECTION ── */
    section { padding: 68px 0; }

.section-label {
      display: inline-block;
      background: linear-gradient(135deg, #e0f2fe, #dcfce7);
      color: var(--primary-dark);
      padding: 5px 16px; border-radius: 50px;
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.5px; margin-bottom: 14px;
    }

.section-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700; color: var(--text-mid);
      margin-bottom: 12px; line-height: 1.35;
    }

.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 0; }

/* ── TOC SIDEBAR ── */
    .toc-card {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-sm);
      padding: 28px 24px;
      position: sticky; top: 20px;
      border-top: 4px solid var(--primary);
    }

.toc-card h5 {
      font-weight: 700; color: var(--text-mid);
      font-size: 1rem; margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--bg-light);
    }

.toc-list { list-style: none; padding: 0; margin: 0; }

.toc-list li { margin-bottom: 4px; }

.toc-list a {
      color: var(--text-muted); text-decoration: none;
      font-size: 0.88rem; padding: 6px 10px;
      border-radius: 8px; display: flex; align-items: center; gap: 8px;
      transition: background 0.2s, color 0.2s;
    }

.toc-list a:hover { background: var(--bg-light); color: var(--primary-dark); }

.toc-list a i { color: var(--primary); font-size: 0.8rem; }

.updated-badge {
      background: #f0fdf4; border: 1px solid #bbf7d0;
      border-radius: 10px; padding: 12px 14px;
      display: flex; gap: 10px; align-items: center; margin-top: 20px;
    }

.updated-badge i { color: var(--secondary); }

.updated-badge span { font-size: 0.82rem; color: #166534; }

/* ── PRIVACY SECTIONS ── */
    .privacy-section {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-sm);
      padding: 36px 34px;
      margin-bottom: 24px;
      scroll-margin-top: 80px;
    }

.ps-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 20px; padding-bottom: 16px;
      border-bottom: 2px solid var(--bg-light);
    }

.ps-num {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 800; font-size: 1rem;
      flex-shrink: 0;
    }

.ps-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #e0f2fe, #bae6fd);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0;
    }

.ps-title { font-size: 1.15rem; font-weight: 700; color: var(--text-mid); margin: 0; }

.privacy-section p { color: #334155; font-size: 0.95rem; margin-bottom: 14px; line-height: 1.9; }

.privacy-section p:last-child { margin-bottom: 0; }

.privacy-list { list-style: none; padding: 0; margin: 14px 0; }

.privacy-list li {
      display: flex; gap: 10px; align-items: flex-start;
      color: #334155; font-size: 0.93rem;
      padding: 8px 0; border-bottom: 1px dashed #e2e8f0;
    }

.privacy-list li:last-child { border-bottom: none; }

.privacy-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.privacy-list.pl-green li i { color: var(--secondary); }

.privacy-list.pl-red li i { color: #ef4444; }

.info-box {
      border-radius: 10px; padding: 14px 18px;
      display: flex; gap: 12px; align-items: flex-start; margin: 16px 0;
    }

.info-box i { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

.info-box p { font-size: 0.91rem; margin: 0; }

.ib-blue { background: #f0f9ff; border: 1px solid #bae6fd; border-left: 4px solid var(--primary); }

.ib-blue i { color: var(--primary); }

.ib-blue p { color: #0c4a6e; }

.ib-green { background: #f0fdf4; border: 1px solid #bbf7d0; border-left: 4px solid var(--secondary); }

.ib-green i { color: var(--secondary); }

.ib-green p { color: #14532d; }

.ib-orange { background: #fff7ed; border: 1px solid #fed7aa; border-left: 4px solid #f97316; }

.ib-orange i { color: #f97316; }

.ib-orange p { color: #7c2d12; }

/* ── DATA TABLE ── */
    .data-table-wrap { overflow-x: auto; margin: 16px 0; }

.data-table {
      width: 100%; border-collapse: collapse;
      font-size: 0.9rem; color: #334155;
    }

.data-table th {
      background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
      color: #fff; padding: 12px 16px;
      text-align: left; font-weight: 600;
    }

.data-table td { padding: 11px 16px; border-bottom: 1px solid #e2e8f0; }

.data-table tr:nth-child(even) td { background: #f8fafc; }

.data-table tr:hover td { background: #f0f9ff; }

/* ── FEATURE CARDS ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 22px;
    }

.feature-card {
      background: #fff; border-radius: var(--card-radius);
      padding: 28px 24px; box-shadow: var(--shadow-sm);
      display: flex; gap: 18px; align-items: flex-start;
      transition: transform 0.2s, box-shadow 0.2s;
      border-bottom: 3px solid transparent;
    }

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-card:nth-child(1):hover { border-bottom-color: var(--primary); }

.feature-card:nth-child(2):hover { border-bottom-color: var(--secondary); }

.feature-card:nth-child(3):hover { border-bottom-color: var(--accent-gold); }

.feature-card:nth-child(4):hover { border-bottom-color: #a855f7; }

.feature-card:nth-child(5):hover { border-bottom-color: #ef4444; }

.feature-card:nth-child(6):hover { border-bottom-color: #06b6d4; }

.fc-icon {
      width: 54px; height: 54px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; flex-shrink: 0;
    }

.fc-i1 { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }

.fc-i2 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.fc-i3 { background: linear-gradient(135deg, #fffbeb, #fef3c7); }

.fc-i4 { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }

.fc-i5 { background: linear-gradient(135deg, #fff1f2, #fecdd3); }

.fc-i6 { background: linear-gradient(135deg, #ecfeff, #cffafe); }

.fc-body h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 7px; font-size: 1rem; }

.fc-body p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* ── RIGHTS GRID ── */
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px; margin-top: 16px;
    }

.right-card {
      background: var(--bg-light);
      border-radius: 12px; padding: 20px 18px;
      border: 1px solid #bae6fd;
      text-align: center;
      transition: background 0.2s, transform 0.2s;
    }

.right-card:hover { background: #fff; transform: translateY(-3px); }

.right-card .rc-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px; font-size: 1.3rem; color: #fff;
    }

.right-card h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 6px; font-size: 0.95rem; }

.right-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ── CTA ── */
    .cta-banner {
      background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 60%, #22c55e 100%);
      border-radius: 22px; padding: 60px 48px;
      text-align: center; position: relative; overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

.cta-banner::before {
      content: '🔒'; font-size: 9rem;
      position: absolute; left: -20px; top: 50%;
      transform: translateY(-50%); opacity: 0.08;
    }

.cta-banner::after {
      content: '🛡️'; font-size: 9rem;
      position: absolute; right: -20px; top: 50%;
      transform: translateY(-50%); opacity: 0.08;
    }

.cta-tag {
      display: inline-block; background: rgba(255,255,255,0.2);
      color: #fff; padding: 5px 18px; border-radius: 50px;
      font-size: 0.85rem; font-weight: 600; margin-bottom: 18px;
    }

.cta-banner h3 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; margin-bottom: 14px; }

.cta-banner p { color: #bae6fd; font-size: 1rem; margin-bottom: 28px; }

.btn-cta-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: var(--primary-dark);
      padding: 13px 30px; border-radius: 10px;
      font-weight: 700; font-size: 1rem; text-decoration: none;
      box-shadow: 0 4px 18px rgba(0,0,0,0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }

.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: var(--primary-dark); }

.btn-cta-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #fff;
      padding: 12px 28px; border-radius: 10px;
      font-weight: 600; font-size: 1rem; text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: background 0.2s, border-color 0.2s;
    }

.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ── RESPONSIVE ── */
    @media (max-width: 768px) {
section { padding: 48px 0; }

.privacy-section { padding: 24px 18px; }

.cta-banner { padding: 38px 22px; }

.cta-banner::before, .cta-banner::after { display: none; }

.toc-card { position: static; margin-bottom: 24px; }
}
