
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #1a1a1a;
    --ink-light: #4a4a4a;
    --ink-muted: #7a7a7a;
    --gold: #B8960C;
    --gold-light: #F5ECC7;
    --rule: #d8d0c0;
    --bg: #FDFAF5;
    --paper: #FFFFFF;
    --tata-blue: #003087;
    --tata-blue-light: #EEF2F9;
  }

  html { scroll-behavior: smooth; }

  body {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    min-height: 100vh;
  }

  /* ── Cover / Header ── */
  .cover {
    background: var(--tata-blue);
    color: white;
    padding: 56px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.03) 40px,
      rgba(255,255,255,0.03) 41px
    );
  }
  .cover-inner { position: relative; z-index: 1; }
  .cover-label {
    
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
  }
  .cover h1 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .cover h1 span {
    display: block;
    font-size: 0.65em;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.08em;
  }
  .cover-year {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
  }
  .cover-badge {
    display: inline-block;
    margin-top: 24px;
    padding: 5px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }

  /* ── Layout ── */
  .wrapper {
    width: 96%;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
  }

  /* ── Document Control Table Section ── */
  .meta-section {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 40px 0 36px;
  }
  .meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .meta-block h3 {
    
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tata-blue);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--tata-blue);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
  }
  table th, table td {
    padding: 9px 14px;
    text-align: left;
    border: 1px solid var(--rule);
    vertical-align: top;
  }
  table th {
    background: var(--tata-blue-light);
    color: var(--tata-blue);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  table tr:nth-child(even) td { background: #FAFAFA; }

  .dc-table td:first-child { font-weight: 500; color: var(--ink-light); font-size: 12.5px; }
  .dc-table td:last-child { color: var(--ink); }

  /* ── TOC ── */
  .toc-section {
    background: var(--gold-light);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid #dfd5b0;
    padding: 36px 0 32px;
  }
  .toc-section h3 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--tata-blue);
    margin-bottom: 16px;
  }
  .toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .toc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--tata-blue);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
  }
  .toc-list li a:hover { color: var(--gold); }
  .toc-list li a .toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--tata-blue);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
  }

  /* ── Main Content ── */
  .content-area {
    padding: 48px 0 64px;
  }

  .doc-section {
    margin-bottom: 48px;
    scroll-margin-top: 104px;
  }

  .section-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
  }
  .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: var(--tata-blue);
    color: white;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    
  }
  .section-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--tata-blue);
    line-height: 1.2;
  }

  p {
    margin-bottom: 14px;
    color: var(--ink);
    line-height: 1.75;
  }
  p:last-child { margin-bottom: 0; }

  a { color: var(--tata-blue); }
  a:hover { color: var(--gold);  }

  /* Cookie type cards */
  .cookie-cards { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
  .cookie-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--tata-blue);
    border-radius: 0 6px 6px 0;
    padding: 20px 22px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  }
  .cookie-card h4 {
    
    font-weight: 700;
    font-size: 14px;
    color: var(--tata-blue);
    margin-bottom: 8px;
  }
  .cookie-card p { margin-bottom: 8px; font-size: 14px; }
  .cookie-card ul { margin: 8px 0 0 18px; font-size: 13.5px; }
  .cookie-card ul li { margin-bottom: 4px; color: var(--ink-light); }

  .cookie-card.essential { border-left-color: #1a7a4a; }
  .cookie-card.essential h4 { color: #1a7a4a; }
  .cookie-card.performance { border-left-color: #7a4ab8; }
  .cookie-card.performance h4 { color: #7a4ab8; }
  .cookie-card.functionality { border-left-color: #b85a10; }
  .cookie-card.functionality h4 { color: #b85a10; }
  .cookie-card.authentication { border-left-color: #0a7aab; }
  .cookie-card.authentication h4 { color: #0a7aab; }
  .cookie-card.targeting { border-left-color: #ab1a2a; }
  .cookie-card.targeting h4 { color: #ab1a2a; }
  .cookie-card.video { border-left-color: #1a6aab; }
  .cookie-card.video h4 { color: #1a6aab; }

  /* Definition blocks */
  .def-block {
    background: var(--tata-blue-light);
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 14px;
    font-size: 14px;
  }
  .def-block strong { color: var(--tata-blue); }

  /* Cookie categories list */
  .category-list {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 16px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .category-list li span {
    display: inline-block;
    background: var(--tata-blue-light);
    color: var(--tata-blue);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
  }

  /* Browser links */
  .browser-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0;
  }
  .browser-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    text-decoration: none;
    color: var(--tata-blue);
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s;
  }
  .browser-link:hover { background: var(--tata-blue-light); border-color: var(--tata-blue); text-decoration: none; }
  .browser-link::before {
    content: '🔗';
    font-size: 14px;
  }

  /* Cookie list table */
   .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--rule);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .cookie-list-table { font-size: 13px; }
  .cookie-list-table th:nth-child(4) { min-width: 180px; }
  .cookie-list-placeholder td {
    color: var(--ink-muted);
    font-style: italic;
    text-align: center;
    padding: 18px;
  }

  /* Contact section */
  .contact-block {
    background: var(--tata-blue);
    color: white;
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 8px;
  }
  .contact-block h4 {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .contact-block a { color: var(--gold-light); }
  .contact-block p { color: rgba(255,255,255,0.85); margin-bottom: 10px; font-size: 14px; }

  /* ── Footer ── */
  .doc-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 22px 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .doc-footer strong { color: rgba(255,255,255,0.8); }

  /* Print */
  @media print {
    .cover { background: var(--tata-blue) !important; -webkit-print-color-adjust: exact; }
    .browser-links { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .meta-grid { grid-template-columns: 1fr; }
    .browser-links { grid-template-columns: 1fr; }
  }
