@font-face {
  font-family: "CQLogo";
  src: url("../assets/fonts/Handlee-Regular.ttf") format("truetype");
  font-display: swap;
}

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

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fff;
  color: #151515;
}

.cq-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #eee;
}

.cq-logo {
  font-family: "CQLogo", sans-serif;
  color: #111;
  text-decoration: none;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.cq-logo span {
  color: #de0f0f;
}

.cq-nav {
  display: flex;
  gap: 24px;
}

.cq-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 15px;
}

.cq-nav a:hover {
  color: #de0f0f;
}

.privacy-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 24px 120px;
}

.privacy-hero {
  margin-bottom: 56px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 900;
  color: #de0f0f;
  margin-bottom: 18px;
}

.privacy-hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  line-height: .95;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.privacy-hero p {
  max-width: 760px;
  color: #555;
  font-size: 21px;
  line-height: 1.6;
}

.privacy-content {
  display: grid;
  gap: 34px;
}

.privacy-content article {
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.privacy-content h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

.privacy-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.75;
}

.privacy-updated {
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #777;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 850px) {
  .cq-header {
    height: auto;
    padding: 18px 22px;
    flex-direction: column;
    gap: 14px;
  }

  .cq-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .privacy-wrap {
    padding-top: 72px;
  }
}
