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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: #3a3a3a;
  background: #ffffff;
  line-height: 1.75;
}

.page {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

/* ── Hero ── */
.hero {
  text-align: center;
  margin-bottom: 56px;
}
.hero-icon {
  width: 58px;
  height: 58px;
  background: #ede9fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.hero-icon svg { width: 26px; height: 26px; }
.hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.hero p { font-size: 14px; color: #999; letter-spacing: 0.01em; }

/* ── Intro text (privacy policy) ── */
.intro-text {
  background: #f5f4fb;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.intro-text p { margin-bottom: 10px; }
.intro-text p:last-child { margin-bottom: 0; }

/* ── Sections ── */
section { margin-bottom: 52px; }

h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}
h2 .num {
  color: #6b4ee6;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  min-width: 22px;
}

h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 20px 0 6px;
}

h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: #555;
  margin: 14px 0 5px;
}

p { margin-bottom: 10px; color: #555; font-size: 14px; }

/* ── Lists ── */
ul, ol { padding-left: 0; margin: 8px 0 12px; list-style: none; }
ul li, ol li {
  font-size: 14px;
  color: #555;
  padding: 3px 0 3px 20px;
  position: relative;
}
ul li::before {
  content: "•";
  color: #6b4ee6;
  position: absolute;
  left: 5px;
}
ol { counter-reset: ol-c; }
ol li { counter-increment: ol-c; }
ol li::before {
  content: "(" counter(ol-c, lower-roman) ")";
  color: #6b4ee6;
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 5px;
}
ul.forbidden li::before { content: "✗"; color: #c0392b; left: 3px; }
ul.rights li { padding: 5px 0 5px 20px; }
ul.rights li strong { color: #1a1a2e; }

a { color: #6b4ee6; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Processing table (privacy policy) ── */
.processing-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.processing-card {
  border: 1px solid #e8e4f8;
  border-radius: 10px;
  padding: 18px 22px;
}
.processing-card .pc-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.processing-card .pc-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 5px;
  color: #555;
}
.processing-card .pc-row:last-child { margin-bottom: 0; }
.pc-badge {
  background: #ede9fb;
  color: #6b4ee6;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

/* ── Contact inline box ── */
.contact-inline {
  background: #f5f4fb;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 14px;
  font-size: 14px;
}
.contact-inline .label { font-weight: 600; color: #1a1a2e; margin-bottom: 6px; }
.contact-inline a {
  color: #6b4ee6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-inline a:hover { text-decoration: underline; }
.contact-inline svg { width: 14px; height: 14px; flex-shrink: 0; }
.contact-inline .ci-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b4ee6;
  margin-bottom: 6px;
}
.contact-inline .ci-row:last-child { margin-bottom: 0; }
.contact-inline .ci-plain { color: #555; }

/* ── Appendix box (terms of use) ── */
.appendix-box {
  background: #f5f4fb;
  border-radius: 10px;
  padding: 26px 30px;
  margin-top: 12px;
}
.appendix-box .intro { font-style: italic; color: #888; margin-bottom: 16px; }

/* ── Contact footer ── */
.contact-section { text-align: center; margin-top: 64px; }
.contact-section h2 {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 28px;
  justify-content: center;
}
.contact-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; text-align: left; }
.c-icon {
  width: 44px;
  height: 44px;
  background: #ede9fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 18px; height: 18px; }
.c-label { font-size: 13px; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
.c-value { font-size: 13px; color: #6b4ee6; }
.c-value.plain { color: #555; }

@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .contact-grid { flex-direction: column; align-items: center; }
}
