body {
  font-family: 'Poppins', sans-serif, Arial, Helvetica;
  margin: 0;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

h2 {
  color: #2f3a8f; /* dark blue like screenshot */
  margin-bottom: 10px;
}

.preamble p,
.policy p {
  margin-bottom: 30px;
  font-size: 16px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.policy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  background: #f8f8f8;
  transition: box-shadow 0.2s ease;
}

.policy-card img {
  width: 40px;
  height: 55px;
}

.policy-card span {
  font-weight: 600;
  font-size: 16px;
}

.policy-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background: #fff;
}
