 :root {
      --purple:#cb2c2c;
      --purple-dark: #5b21b6;
      --purple-light: #ede9fe;
      --purple-border: #ddd6fe;
      --gray-100: #f8f7ff;
      --gray-200: #e5e7eb;
      --gray-400: #9ca3af;
      --gray-600: #6b7280;
      --gray-800: #1f2937;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Manrope', sans-serif; color: var(--gray-800); background: #f5f3ff; }

    /* NAVBAR */
    .navbar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 12px 0; position: sticky; top: 0; z-index: 100; }
    .brand-icon { width: 38px; height: 38px; background: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
    .brand-text .top { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1rem; color: var(--purple); }
    .brand-text .bot { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
    .nav-links a { color: var(--gray-800); font-weight: 600; font-size: 0.9rem; padding: 6px 14px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
    .nav-links a:hover { background: var(--purple-light); color: var(--purple); }
    .lang-btn { border: 2px solid var(--gray-200); background: #fff; border-radius: 8px; padding: 4px 10px; font-weight: 700; font-size: 0.8rem; cursor: pointer; color: var(--gray-800); transition: all 0.2s; }
    .lang-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
    .call-btn-nav { background: var(--purple); color: #fff; border: none; border-radius: 10px; padding: 8px 16px; font-weight: 700; font-size: 0.86rem; display: flex; align-items: center; gap: 6px; text-decoration: none; transition: background 0.2s; }
    .call-btn-nav:hover { background: var(--purple-dark); color: #fff; }

    /* HERO STRIP */
    .page-hero {
      background: #cb2c2c;
      padding: 52px 0 44px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      
      pointer-events: none;
    }
    .page-hero .badge-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px; padding: 5px 16px;
      color: #fff; font-size: 0.8rem; font-weight: 600;
      margin-bottom: 16px;
      backdrop-filter: blur(4px);
    }
    .page-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
    .page-hero p { color: rgba(255,255,255,0.82); font-size: 0.95rem; max-width: 540px; margin: 0 auto; }
    .page-hero .meta { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin-top: 10px; }

    /* LAYOUT */
    .content-wrap { max-width: 960px; margin: 0 auto; padding: 40px 16px 80px; }

    /* TABLE OF CONTENTS */
    .toc-card {
      background: #fff;
      border: 1.5px solid var(--purple-border);
      border-radius: 16px;
      padding: 24px 26px;
      margin-bottom: 32px;
      box-shadow: 0 2px 16px rgba(124,58,237,0.07);
    }
    .toc-card h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 900; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .toc-card h3 i { color: var(--purple); }
    .toc-list { list-style: none; padding: 0; margin: 0; columns: 2; gap: 24px; }
    .toc-list li { margin-bottom: 8px; break-inside: avoid; }
    .toc-list li a { color: var(--purple); font-size: 0.87rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
    .toc-list li a:hover { color: var(--purple-dark); }
    .toc-list li a::before { content: '→'; font-size: 0.78rem; }

    /* POLICY CONTENT */
    .policy-card {
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    }
    .policy-section {
      padding: 32px 36px;
      border-bottom: 1.5px solid var(--gray-200);
      scroll-margin-top: 90px;
    }
    .policy-section:last-child { border-bottom: none; }
    .section-header {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 18px;
    }
    .section-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: #ececec;
      display: flex; align-items: center; justify-content: center;
      color: var(--purple); font-size: 18px; flex-shrink: 0;
    }
    .section-header h2 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 900; margin: 0; }
    .policy-section p { font-size: 0.9rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 12px; }
    .policy-section p:last-child { margin-bottom: 0; }
    .policy-section ul, .policy-section ol { padding-left: 20px; margin-bottom: 12px; }
    .policy-section ul li, .policy-section ol li { font-size: 0.9rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 6px; }
    .policy-section h4 { font-weight: 800; font-size: 0.97rem; color: var(--gray-800); margin: 18px 0 8px; }
    .highlight-box {
      background: var(--gray-100);
      border-left: 4px solid var(--purple);
      border-radius: 0 10px 10px 0;
      padding: 14px 18px;
      margin: 14px 0;
      font-size: 0.87rem; line-height: 1.7; color: var(--gray-600);
    }
    .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
    .tag { background: #dadada; color: var(--purple); border-radius: 50px; padding: 4px 14px; font-size: 0.8rem; font-weight: 700; }

    /* CONTACT CARD */
    .contact-card {
      background: #cb2c2c;
      border-radius: 16px;
      padding: 32px 28px;
      margin-top: 32px;
      text-align: center;
      color: #fff;
    }
    .contact-card h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
    .contact-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 20px; }
    .contact-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .contact-link {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 10px; padding: 10px 20px;
      color: #fff; text-decoration: none;
      font-weight: 700; font-size: 0.88rem;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
    }
    .contact-link:hover { background: rgba(255,255,255,0.28); color: #fff; }

    /* FOOTER */
    footer { background: #fff; border-top: 1px solid var(--gray-200); padding: 50px 0 24px; }
    .footer-brand { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 900; color: var(--purple); margin-bottom: 6px; }
    .footer-tagline { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 14px; }
    .footer-contact a { display: flex; align-items: center; gap: 8px; color: var(--purple); font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; text-decoration: none; }
    .footer-contact .femail { color: var(--gray-600); font-weight: 500; }
    .footer-social { display: flex; gap: 8px; margin-top: 14px; }
    .soc-icon { width: 34px; height: 34px; background: var(--purple-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: 14px; text-decoration: none; transition: all 0.2s; }
    .soc-icon:hover { background: var(--purple); color: #fff; }
    footer h6 { font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-800); margin-bottom: 14px; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: var(--gray-600); font-size: 0.85rem; text-decoration: none; font-weight: 500; transition: color 0.2s; }
    footer ul li a:hover { color: var(--purple); }
    .footer-bottom { border-top: 1px solid var(--gray-200); margin-top: 36px; padding-top: 18px; text-align: center; font-size: 0.8rem; color: var(--gray-600); }

    /* SCROLL TO TOP */
    .scroll-top {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--purple); color: #fff;
      border: none; border-radius: 50%;
      font-size: 18px; cursor: pointer;
      display: none; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(124,58,237,0.3);
      transition: background 0.2s, transform 0.2s;
      z-index: 200;
    }
    .scroll-top:hover { background: var(--purple-dark); transform: translateY(-2px); }
    .scroll-top.show { display: flex; }

    @media (max-width: 600px) {
      .toc-list { columns: 1; }
      .policy-section { padding: 22px 18px; }
    }