/* Reset styles */
body,
h1,
h2,
p,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #e4e4e4;
  background-color: #1a1a1a;
  padding: 20px;
}

/* Header styling */
.policy-header {
  text-align: center;
  background: linear-gradient(90deg, #00d4ff, #007bff);
  color: #fff;
  padding: 20px 0;
  margin-bottom: 20px;
}

.policy-header h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Main content styling */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: #262626;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

.policy-content h2 {
  color: #00d4ff;
  font-size: 1.8rem;
  margin-top: 20px;
}

.policy-content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Footer styling */
.policy-footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px 0;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  color: #e4e4e4;
}

.policy-footer a {
  color: #00d4ff;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.policy-footer a:hover {
  color: #007bff;
  text-decoration: underline;
}
