/* ─── RESET ─── */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* ─── ROOT / VARS ─── */
  :root {
    --white: #ffffff;
    --off-white: #fff;
    --bg-grey: #9da3b0;
    --text-dark: #1a1a1a;
    --text-grey: #5A5A5A;
  }

  html, body {
    width: 100%;
    min-height: 100%;
    background: var(--white);
    font-family: 'Inter', sans-serif;
  }

  /* ─── HEADER - SOLID BLACK ─── */
  .main-header {
    background: #1a1a1a !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* ─── TERMS CONTENT ─── */
  .terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 160px 40px 100px;
  }

  .terms-header {
    margin-bottom: 60px;
  }

  .terms-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .terms-header .last-updated {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-grey);
    letter-spacing: 0.01em;
  }

  .terms-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .terms-section {
    margin-bottom: 45px;
  }

  .terms-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .terms-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 16px;
  }

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

  .terms-section ul li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
  }

  .terms-section ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--text-dark);
    font-weight: 700;
  }

  .terms-section strong {
    color: var(--text-dark);
    font-weight: 600;
  }

  /* Important notice box */
  .notice-box {
    background: #f8f8f8;
    border-left: 4px solid var(--text-dark);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
  }

  .notice-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .notice-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 8px;
  }

  .notice-box a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--text-dark);
    transition: opacity 0.3s ease;
  }

  .notice-box a:hover {
    opacity: 0.7;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .terms-container {
      padding: 140px 24px 80px;
    }

    .terms-header h1 {
      font-size: 40px;
    }

    .terms-intro {
      font-size: 16px;
    }

    .terms-section h2 {
      font-size: 24px;
    }

    .terms-section p,
    .terms-section ul li {
      font-size: 15px;
    }
  }
