    :root {
      --white: #FFFDF9;
      --text2: #6B5144;
      --border: rgba(139, 100, 70, 0.12);
      --shadow: 0 18px 50px rgba(45, 31, 20, 0.08);
    }

    @font-face {
      font-family: "Playfair Display";
      src: url("/static/fonts/playfair-display-500-latin.woff2") format("woff2");
      font-weight: 500;
      font-display: swap;
    }

    .card {
      margin: 28px 0 40px;
      padding: 28px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .container.privacy-main {
      width: min(920px, calc(100vw - 32px));
      margin: 0 auto;
    }

    h1,
    h2 {
      margin: 0;
      font-family: "Playfair Display", serif;
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    h1 {
      font-size: clamp(42px, 7vw, 68px);
      max-width: 11ch;
    }

    h2 {
      margin-top: 28px;
      font-size: 30px;
    }

    p,
    li {
      color: var(--text2);
      font-size: 18px;
    }

    ul {
      margin: 14px 0 0;
      padding-left: 20px;
    }

    .lead {
      margin-top: 18px;
      max-width: 38rem;
    }

    .actions {
      margin-top: 24px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
