  .privacy-root {
      
      background: #fff; 
      color: #111;
  }

  /* ── TOP BAR ── */
  .privacy-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 24px 18px 24px;
      border-bottom: 1.5px solid #e0e0e0;
      max-width: 1400px;
      margin: auto;
  }

  .privacy-topbar .site-label {
      font-size: 1.72rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #111;
  }

  .lang-select-wrap {
      position: relative;
      display: flex;
      align-items: center;
  }

  .lang-select-wrap select {
      appearance: none;
      -webkit-appearance: none;
      border: none;
      background: transparent;
      
      font-size: 1.4rem;
      font-weight: 600;
      padding: 10px;
      color: #111;
      cursor: pointer;
      outline: none;
      letter-spacing: .5px;
  }

  .lang-select-wrap::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid #111;
      pointer-events: none;
  }

  /* ── MAIN CONTENT ── */
  .privacy-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 48px 24px 80px;
  }

  /* ── PAGE HEADING ── */
  .privacy-main .page-title {
      font-size: 1.72rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #111;
      margin-bottom: 36px;
  }

  /* ── SECTIONS ── */
  .privacy-section {
      margin-bottom: 32px;
  }

  .privacy-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
      line-height: 1.4;
  }

  .privacy-section p {
      font-size: 1.4rem;
      color: #444;
      line-height: 1.75;
  }

  .privacy-section ul {
      margin-top: 6px;
      padding-left: 0;
      list-style: none;
  }

  .privacy-section ul li {
      font-size: 1.4rem;
      color: #444;
      line-height: 1.8;
      padding-left: 14px;
      position: relative;
  }

  .privacy-section ul li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: #888;
  }

  /* sub-heading inside a section */
  .privacy-section .sub-section {
      margin-top: 14px;
  }

  .privacy-section .sub-section h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
  }

  .privacy-section .sub-section p {
      font-size: 1.4rem;
      color: #444;
      line-height: 1.75;
  }



  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
      .privacy-topbar {
          padding: 16px 20px;
      }

      .privacy-main {
          padding: 32px 20px 60px;
      }
  }


  /* ========================= T_&_C CSS ============================== */


  .terms-root {
      
      background: #fff; 
      color: #111;
  }

  /* ── TOP BAR ── */
  .terms-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: auto;
      padding: 18px 24px 18px 24px;
      border-bottom: 1.5px solid #e0e0e0;
  }

  .terms-topbar .bar-label {
      font-size: 1.72rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #111;
  }

  .lang-wrap {
      position: relative;
      display: flex;
      align-items: center;
  }

  .lang-wrap select {
      appearance: none;
      -webkit-appearance: none;
      border: none;
      background: transparent;
      
      font-size: 1.4rem;
      font-weight: 600;
      color: #111;
      cursor: pointer;
      padding: 10px;
      outline: none;
      letter-spacing: .5px;
  }

  .lang-wrap::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid #111;
      pointer-events: none;
  }

  /* ── MAIN ── */
  .terms-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 48px 24px 80px;
  }

  /* ── SECTION ── */
  .terms-section {
      margin-bottom: 30px;
  }

  .terms-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 7px;
      line-height: 1.4;
  }

  .terms-section p {
      font-size: 1.4rem;
      color: #444;
      line-height: 1.78;
  }

  .terms-section ul {
      list-style: none;
      padding-left: 0;
      margin-top: 5px;
  }

  .terms-section ul li {
      font-size: 1.4rem;
      color: #444;
      line-height: 1.85;
      padding-left: 14px;
      position: relative;
  }

  .terms-section ul li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: #888;
  }

  .terms-section p+ul,
  .terms-section p+p {
      margin-top: 6px;
  }

  

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
      .terms-topbar {
          padding: 16px 20px;
      }

      .terms-main {
          padding: 28px 20px 60px;
      }
  }