@font-face {
  font-family: 'CookieRun Bold';
  src: url('../fonts/CookieRun Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fdf7f3;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: #fdf7f3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-header .wrapper {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 24px;
  background: transparent;
}

.page-content {
  margin-top: 100px;
}

.site-nav .page-link {
  color: #222 !important;
  text-decoration: none !important;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  padding: 0 36px;
  transition: color 0.2s;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 2.5px solid transparent;
}

.site-nav .page-link:hover {
  color: #7c4dff !important;
  text-decoration: underline;
  border-bottom: 2.5px solid #7c4dff;
}

.site-nav .page-link.active {
  color: #7c4dff !important;
  border-bottom: 2.5px solid #7c4dff;
}

.policy-container {
  max-width: 900px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(60,40,120,0.10);
  padding: 48px 32px 40px 32px;
  text-align: center;
}

.policy-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #5a2d9c;
  letter-spacing: -1px;
}

.policy-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 36px 0 18px 0;
  color: #333;
}

.policy-container h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px 0;
  color: #7c4dff;
  text-align: left;
}

.policy-container table {
  margin: 24px auto 32px auto;
  border-collapse: collapse;
  width: 90%;
  background: #faf7ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(124,77,255,0.07);
}

.policy-container th, .policy-container td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5dbff;
  text-align: left;
  font-size: 1.05rem;
}

.policy-container th {
  background: #ede7f6;
  color: #5a2d9c;
  font-weight: 700;
}

.policy-container tr:last-child td {
  border-bottom: none;
}

.policy-container ul {
  display: inline-block;
  text-align: left;
  margin: 12px 0 24px 0;
  padding-left: 22px;
  font-size: 1.05rem;
}

.policy-container li {
  margin-bottom: 7px;
}

.policy-container p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .policy-container {
    padding: 18px 4vw 24px 4vw;
    max-width: 99vw;
  }
  .policy-container table {
    width: 100%;
    font-size: 0.98rem;
  }
} 