/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Merriweather', Georgia, serif;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  background-color: #fafafa;
  color: #222;
  font-size: 16px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, #2FAAA1, #0b8dff);
  color: white;
  text-align: center;
  padding: 3rem 1rem 2rem;
  border-bottom: 4px solid #003bb3;
}

.header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Content */
.content section {
  margin-bottom: 2.5rem;
}

.content h2 {
  font-size: 1.4rem;
  color: #2FAAA1;
  margin-bottom: 0.8rem;
  border-left: 4px solid #2FAAA1;
  padding-left: 10px;
}

.content p {
  margin-bottom: 1rem;
  color: #333;
}

.content ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

.content ul li {
  margin-bottom: 0.5rem;
}

.policy-text {
  white-space: pre-wrap;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  line-height: 1.6;
  font-family: "Georgia", serif;
}

/* Footer */
.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 1.5rem;
  }
}
