/* === GLOBAL === */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #f6faff;
  margin: 0;
  padding: 0;
  color: #1b1f23;
  line-height: 1.7;
}

/* Container */
.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Header */
.policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-header h1 {
  font-size: 2rem;
  color: #0a4b78;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.policy-header p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Section Titles */
h2 {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  color: #0a4b78;
  border-left: 4px solid #4bb7f5;
  padding-left: 10px;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #0e6ea8;
}

/* Text */
p, li {
  font-size: 1rem;
}

ul {
  margin-top: 0.5rem;
  padding-left: 1.4rem;
}

/* Contact Block */
.contact-block {
  background: #e8f4ff;
  border-left: 4px solid #4bb7f5;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
}

/* Subtle animation */
section {
  margin-bottom: 2rem;
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
