body {
  margin: 0;
  font-family: 'Fredoka', Arial, Helvetica, sans-serif;
  background-color: #222;
  color: #111; /* simple black font */
  line-height: 1.7;
}

.container {
  max-width: 800px;
  margin: 48px auto;
  padding: 32px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(82, 113, 255, 0.08);
  border: 1.5px solid #5271ff; /* primaryColor */
}

header h1 {
  text-align: center;
  font-size: 2rem;
  color: #5271ff; /* primaryColor */
  margin-bottom: 28px;
  font-weight: 700;
}

.policy-content h2 {
  font-size: 1.1rem;
  color: #fd7790; /* secondaryColor */
  margin-top: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-content p {
  font-size: 1rem;
  margin-top: 10px;
  color: #222;
}

.policy-content a {
  color: #5271ff; /* primaryColor */
  text-decoration: underline;
  transition: color 0.2s;
}

.policy-content a:hover {
  color: #fd7790; /* secondaryColor */
}

footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #5271ff;
  border-top: 1px solid #eee;
  padding-top: 18px;
  background: transparent;
}
