/* Homepage Policy Boxes */
.homepage-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2em;
}

.policy-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
}

.policy-box {
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2em 1.5em;
  width: 300px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.policy-box:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.policy-box h2 {
  margin-bottom: 0.5em;
}
.policy-box p {
  margin-bottom: 1.5em;
  color: #333;
}
.policy-btn {
  display: inline-block;
  padding: 0.6em 1.2em;
  background: #0077ed;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.policy-btn:hover:not(.disabled) {
  background: #005bb5;
}
.policy-btn.disabled {
  background: #cccccc;
  cursor: not-allowed;
  pointer-events: none;
}
