/* ==================================================
       DESIGN TOKENS
       ================================================== */
    :root {
      --tc-max-width: 1440px;
      --tc-padding-x: 16px;
      --tc-header-h: 64px;

      --tc-bg: #000000;
      --tc-bg-bar: #0e0e0e;
      --tc-bg-card: #131313;
      --tc-bg-box: #1c1b1b;
      --tc-bg-muted: #2a2a2a;
      --tc-border: #2a2a2a;
      --tc-accent:#ffd700;
      --tc-accent-text: #6f6600;
      --tc-white: #ffffff;
      --tc-muted: #ccc7ae;
      --tc-hero-text: rgba(255, 255, 255, 0.9);
      --tc-overlay: rgba(0, 0, 0, 0.7);

      --tc-font-display: "Hanken Grotesk", "Inter", system-ui, sans-serif;
      --tc-font-body: "Hanken Grotesk", "Inter", system-ui, sans-serif;

      --tc-fs-xs: 14px;
      --tc-fs-sm: 16px;
      --tc-fs-md: 18px;
      --tc-fs-lg: 24px;
      --tc-fs-xl: 32px;
      --tc-fs-hero: 40px;

      --tc-gap-xs: 8px;
      --tc-gap-sm: 16px;
      --tc-gap-md: 24px;
      --tc-gap-lg: 32px;
      --tc-gap-xl: 48px;
      --tc-gap-2xl: 64px;

      --tc-radius-sm: 4px;
      --tc-radius-md: 8px;
      --tc-radius-lg: 12px;
      --tc-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    /* ==================================================
       RESET & BASE
       ================================================== */
    *,
    *::before,
    *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    .tc-page {
      margin: 0;
      background: var(--tc-bg);
      color: var(--tc-muted);
      font-family: var(--tc-font-body);
      font-size: var(--tc-fs-sm);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .tc-page img { display: block; max-width: 100%; height: auto; }
    .tc-page a { color: inherit; text-decoration: none; }
    .tc-page button { font: inherit; cursor: pointer; border: none; background: none; }
    .tc-page ul { margin: 0; padding: 0; list-style: none; }
    .tc-page h1, .tc-page h2, .tc-page h3, .tc-page p { margin: 0; }

    /* ==================================================
       LAYOUT — max-width 1440px
       ================================================== */
    .tc-wrap {
      width: 100%;
      max-width: var(--tc-max-width);
      margin-inline: auto;
      padding-inline: var(--tc-padding-x);
    }
    /* ==================================================
       HERO
       ================================================== */
    .tc-hero {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 280px;
      border-bottom: 1px solid var(--tc-border);
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 50%, #1a1800 100%);
    }

    .tc-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .tc-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tc-hero-overlay {
      position: absolute;
      inset: 0;
      background: var(--tc-overlay);
      background-image: url('http://skyexchbooks.com/wp-content/uploads/2026/05/Terms-and-Conditions-Banner-2.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    }

    .tc-hero-content {
      position: relative;
      z-index: 1;
      padding-block: var(--tc-gap-2xl);
    }

    .tc-hero-label {
      display: inline-block;
      margin-bottom: var(--tc-gap-sm);
      padding: 4px 12px;
      background: var(--tc-accent);
      color: var(--tc-accent-text);
      font-size: var(--tc-fs-xs);
      letter-spacing: 0.07em;
      border-radius: var(--tc-radius-sm);
    }

    .tc-hero-title {
      max-width: 768px;
      margin-bottom: var(--tc-gap-sm);
      color: var(--tc-white);
      font-family: var(--tc-font-display);
      font-size: 28px;
      font-weight:700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .tc-hero-desc {
      max-width: 768px;
      color: var(--tc-hero-text);
      font-size: var(--tc-fs-md);
      line-height: 1.625;
    }

    /* ==================================================
       MAIN GRID (sidebar + terms)
       ================================================== */
    .tc-main { display: block; }

    .tc-grid {
      display: flex;
      flex-direction: column;
      gap: var(--tc-gap-lg);
      padding-block: var(--tc-gap-2xl);
    }

    /* ==================================================
       SIDEBAR NAV
       ================================================== */
    .tc-aside {
      display: flex;
      flex-direction: column;
      gap: var(--tc-gap-md);
      width: 100%;
    }

    .tc-nav-card {
      padding: var(--tc-gap-md);
      background: var(--tc-bg-card);
      border: 1px solid var(--tc-border);
      border-radius: var(--tc-radius-lg);
      box-shadow: var(--tc-shadow);
    }

    .tc-nav-heading {
      margin-bottom: var(--tc-gap-sm);
      padding-bottom: var(--tc-gap-xs);
      border-bottom: 1px solid var(--tc-border);
      color: var(--tc-muted);
      font-size: var(--tc-fs-xs);
      font-weight: 700;
    }

    .tc-nav-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
      max-height: 400px;
      overflow-y: auto;
    }

    .tc-nav-link {
      display: block;
      padding: var(--tc-gap-xs) 12px;
      border-radius: var(--tc-radius-md);
      font-size: var(--tc-fs-sm);
      line-height: 1.5;
      transition: background 0.2s, color 0.2s;
    }

    .tc-nav-link:hover {
      background: var(--tc-bg-muted);
      color: var(--tc-white);
    }

    .tc-nav-link.is-highlight {
      background: var(--tc-accent);
      color: var(--tc-accent-text);
    }

    .tc-nav-link.is-highlight:hover {
      background: var(--tc-accent);
      color: var(--tc-accent-text);
    }

    .tc-alert {
      padding: var(--tc-gap-md);
      background: var(--tc-bg-muted);
      border: 1px solid var(--tc-border);
      border-radius: var(--tc-radius-lg);
    }

    .tc-alert-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: var(--tc-gap-sm);
    }

    .tc-alert-icon { width: 24px; height: 24px; flex-shrink: 0; }

    .tc-alert-title {
      color: var(--tc-white);
      font-size: var(--tc-fs-sm);
    }

    .tc-alert-text {
      font-size: var(--tc-fs-sm);
      line-height: 1.5;
    }

    /* ==================================================
       TERMS SECTIONS
       ================================================== */
    .tc-terms {
      display: flex;
      flex-direction: column;
      gap: var(--tc-gap-md);
      flex: 1;
      min-width: 0;
    }

    .tc-section {
      padding: var(--tc-gap-md);
      background: var(--tc-bg-card);
      border: 1px solid var(--tc-border);
      border-radius: var(--tc-radius-lg);
      box-shadow: var(--tc-shadow);
    }

    .tc-section-head {
      display: flex;
      align-items: center;
      gap: var(--tc-gap-sm);
      margin-bottom: var(--tc-gap-md);
    }

    .tc-section-num {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: var(--tc-accent);
      color: var(--tc-accent-text);
      font-size: var(--tc-fs-lg);
      font-weight: 700;
      border-radius: var(--tc-radius-sm);
    }

    .tc-section-num.is-icon {
      background: transparent;
      padding: 0;
    }

    .tc-section-num.is-icon img {
      width: 40px;
      height: 40px;
    }

    .tc-section-title {
      color: var(--tc-white);
      font-size: var(--tc-fs-lg);
      font-weight: 700;
      line-height: 1.2;
    }

    .tc-section-body {
      font-size: var(--tc-fs-sm);
      line-height: 1.5;
    }

    .tc-section-body p + p { margin-top: var(--tc-gap-sm); }

    .tc-section-list {
      margin-top: var(--tc-gap-sm);
      padding-left: var(--tc-gap-md);
      list-style: disc;
      display: flex;
      flex-direction: column;
      gap: var(--tc-gap-xs);
    }

    .tc-contact-box {
      margin-top: var(--tc-gap-sm);
      padding: var(--tc-gap-md);
      background: var(--tc-bg-box);
      border: 1px solid var(--tc-border);
      border-radius: var(--tc-radius-md);
    }

    .tc-contact-email {
      display: inline-flex;
      align-items: center;
      gap: var(--tc-gap-xs);
      margin-top: var(--tc-gap-sm);
      color: var(--tc-accent);
      font-size: var(--tc-fs-sm);
    }

    .tc-contact-email img { width: 20px; height: 20px; }

    /* ==================================================
       FAQ
       ================================================== */
    .tc-faq {
      padding-top: var(--tc-gap-xl);
      margin-top: var(--tc-gap-md);
      border-top: 1px solid var(--tc-border);
    }

    .tc-faq-title {
      margin-bottom: var(--tc-gap-lg);
      color: var(--tc-white);
      font-family: var(--tc-font-display);
      font-size: var(--tc-fs-xl);
      line-height: 1.2;
      letter-spacing: 0.02em;
    }

    .tc-faq-list {
      display: flex;
      flex-direction: column;
      gap: var(--tc-gap-sm);
    }

    .tc-faq-item {
      background: var(--tc-bg-card);
      border: 1px solid var(--tc-border);
      border-radius: var(--tc-radius-lg);
      overflow: hidden;
    }

    .tc-faq-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--tc-gap-sm);
      width: 100%;
      padding: var(--tc-gap-md);
      color: var(--tc-white);
      font-size: var(--tc-fs-md);
      line-height: 1.55;
      text-align: left;
    }

    .tc-faq-icon { width: 24px; height: 24px; flex-shrink: 0; }

    
    /* ==================================================
       RESPONSIVE BREAKPOINTS
       ================================================== */

    /* Mobile — max-width: 767px */
    @media (max-width: 767px) {
      :root { --tc-padding-x: 16px; }
      .tc-logo { font-size: 20px; }
      .tc-hero { min-height: 240px; }
      .tc-hero-title { font-size: 24px; }
      .tc-hero-desc { font-size: var(--tc-fs-sm); }
      .tc-faq-title { font-size: 24px; }
    }

    /* Tablet — 768px to 1023px */
    @media (min-width: 768px) and (max-width: 1023px) {
      :root { --tc-padding-x: 24px; }
      .tc-topnav { display: flex; }
      .tc-hero { min-height: 360px; }
      .tc-hero-title { font-size: 34px; }
      .tc-grid {
        flex-direction: row;
        align-items: flex-start;
      }
      .tc-aside {
        width: 260px;
        flex-shrink: 0;
        position: sticky;
        top: calc(var(--tc-header-h) + var(--tc-gap-md));
      }
      .tc-nav-list { max-height: 50vh; }
      .tc-section { padding: var(--tc-gap-xl); }
      .tc-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }
      .tc-footer-brand { max-width: 280px; }
      .tc-footer-cols { grid-template-columns: repeat(3, 1fr); }
    }

    /* Desktop — min-width: 1024px */
    @media (min-width: 1024px) {
      :root { --tc-padding-x: 40px; }
      .tc-topnav { display: flex; }
      .tc-hero { min-height: 500px; }
      .tc-hero-title {
        font-size: var(--tc-fs-hero);
        line-height: 48px;
      }
      .tc-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
      }
      .tc-aside {
        width: 288px;
        flex-shrink: 0;
        position: sticky;
        top: calc(var(--tc-header-h) + var(--tc-gap-md));
      }
      .tc-nav-list { max-height: 60vh; }
      .tc-terms { max-width:100%; }
      .tc-section { padding: var(--tc-gap-xl); }
      .tc-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }
      .tc-footer-brand { width: 320px; flex-shrink: 0; }
      .tc-footer-cols {
        grid-template-columns: repeat(3, 1fr);
        flex: 1;
        max-width: 640px;
      }
    }

    /* Large screens — min-width: 1920px */
    @media (min-width: 1920px) {
      :root {
        --tc-padding-x: 48px;
        --tc-fs-hero: 48px;
      }
      .tc-hero-title { font-size: var(--tc-fs-hero); line-height: 1.15; }
      .tc-hero-desc { font-size: 20px; }
      .tc-section-title { font-size: 28px; }
      .tc-faq-title { font-size: 40px; }
      .tc-grid { gap: var(--tc-gap-2xl); }
      .tc-aside { width: 320px; }
      .tc-terms { max-width: 900px; }
    }