/* ================== PRIVACY POLICY SECTION ================== */
section {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.7;
}

section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 20px;
  text-align: center;
}

section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #0073e6;
  padding-left: 10px;
}

section p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

section ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
  color: #555;
}

section ul li {
  margin-bottom: 8px;
}

section a {
  color: #0073e6;
  text-decoration: none;
  transition: all 0.3s ease;
}

section a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 30px 20px;
  }

  section h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section h3 {
    font-size: 1.2rem;
  }
}
