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

    body {
      background: #ffffff;
      color: #0A0A0A;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 300;
      line-height: 1.8;
    }

    header {
      padding: 24px 60px;
      border-bottom: 1px solid #ffc107;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: #0A0A0A;
      text-decoration: none;
      letter-spacing: 0.08em;
    }

    .logo span { color: #ffc107; }

    nav a {
      text-decoration: none;
      color: #0A0A0A;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-left: 32px;
      transition: color 0.3s;
    }

    nav a:hover { color: #ffc107; }

    .policy-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: 80px 24px 120px;
    }

    .policy-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: #ffc107;
      margin-bottom: 16px;
      display: block;
    }

    .policy-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .policy-date {
      font-size: 0.8rem;
      color: #999;
      margin-bottom: 56px;
      display: block;
    }

    .policy-divider {
      width: 40px;
      height: 1px;
      background: #ffc107;
      margin-bottom: 56px;
    }

    .policy-section {
      margin-bottom: 48px;
    }

    .policy-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid #ffc107;
    }

    .policy-section p {
      font-size: 0.92rem;
      color: #333;
      margin-bottom: 12px;
    }

    .policy-section ul {
      list-style: none;
      padding: 0;
      margin-bottom: 12px;
    }

    .policy-section ul li {
      font-size: 0.92rem;
      color: #333;
      padding: 4px 0 4px 16px;
      position: relative;
    }

    .policy-section ul li::before {
      content: '✦';
      position: absolute;
      left: 0;
      color: #ffc107;
      font-size: 0.5rem;
      top: 9px;
    }

    .policy-section a {
      color: #ffc107;
      text-decoration: none;
    }

    .policy-section a:hover {
      text-decoration: underline;
    }

    .highlight-box {
      background: #faf8f4;
      border-left: 3px solid #ffc107;
      padding: 20px 24px;
      margin: 20px 0;
      border-radius: 0 4px 4px 0;
    }

    .highlight-box p {
      margin: 0;
      font-size: 0.9rem;
      color: #333;
    }

    footer {
      border-top: 1px solid #ffc107;
      padding: 32px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    footer p {
      font-size: 0.78rem;
      color: #000;
    }

    .footer-links a {
      font-size: 0.78rem;
      color: #000;
      text-decoration: none;
      margin-left: 24px;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: #ffc107; }

    @media (max-width: 600px) {
      header { padding: 20px 24px; }
      nav { display: none; }
      footer { padding: 24px; flex-direction: column; align-items: flex-start; }
      .footer-links a { margin-left: 0; margin-right: 16px; }
    }