* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BACKGROUND */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #020617, #0f172a);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* MAIN CONTAINER */
.policy-container {
  width: 100%;
  max-width: 800px;
  background: rgba(15, 23, 42, 0.95);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* TITLE */
.policy-container h1 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
}

/* INTRO */
.intro {
  text-align: center;
  margin-bottom: 25px;
  color: #cbd5f5;
}

/* POLICY BOX */
.policy-box {
  background: #1e293b;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.policy-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

/* HEADINGS */
.policy-box h3 {
  margin-bottom: 8px;
  color: #00d4ff;
}

/* TEXT */
.policy-box p {
  color: #cbd5f5;
  font-size: 0.95rem;
}

/* UPDATE TEXT */
.update {
  text-align: center;
  margin-top: 20px;
  color: #94a3b8;
}

/* BUTTON */
button {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: #00d4ff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #000;
  font-weight: 600;
}

button:hover {
  background: #00a8cc;
}

/* MOBILE */
@media (max-width: 768px) {
  .policy-container {
    padding: 20px;
  }

  .policy-container h1 {
    font-size: 1.5rem;
  }
}
