section { position: relative; z-index: 1; }
/* Masthead height and the hero pattern now live in global.css (inner-page masthead).
   They used to be duplicated here; the bare min-height had no media query and beat
   global's own mobile rule at every width. Do not re-add them. */
.page-hero-content p { font-family: 'Source Sans 3', sans-serif; font-size: 22px; font-weight: 400; color: #ffffff; }

.policy-section {
  padding: 80px 0 96px;
  background: var(--off-white);
  background-image: url('../images/bg-pattern.svg');
  background-repeat: repeat;
}
.policy-inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 64px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.policy-updated {
  font-family: var(--font-card); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #aaa; margin-bottom: 40px;
}
.policy-intro {
  background: var(--off-white);
  border-left: 4px solid var(--cerise);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 36px;
  font-family: var(--font-body); font-size: 17px; color: #505050; line-height: 1.7;
  font-style: italic;
}
.policy-inner h2 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: var(--navy); margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cerise);
  display: inline-block;
}
.policy-inner h3 {
  font-family: var(--font-card); font-size: 15px; font-weight: 700;
  color: var(--navy); margin: 20px 0 8px;
}
.policy-inner p {
  font-family: var(--font-body); font-size: 17px; color: #505050;
  line-height: 1.75; margin-bottom: 14px;
}
.policy-inner ul {
  margin: 8px 0 16px 20px;
  font-family: var(--font-body); font-size: 17px; color: #505050;
  line-height: 1.75;
}
.policy-inner ul li { margin-bottom: 6px; }
.policy-inner strong { color: var(--navy); }
.contact-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0 16px;
}
.contact-box p {
  color: rgba(255,255,255,0.85); margin-bottom: 6px;
}
.contact-box p:last-child { margin-bottom: 0; }
.contact-box strong { color: #fff; }
.contact-box a { color: var(--pink); text-decoration: none; }
.contact-box a:hover { text-decoration: underline; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 768px) {
  .policy-section { padding: 56px 0 72px; }
  .policy-inner {
    max-width: 100%;
    padding: 40px 28px;
  }
  .policy-inner h2 { font-size: 20px; }
  .policy-inner p,
  .policy-inner ul,
  .policy-intro { font-size: 16px; }
  .contact-box { padding: 24px 24px; }
}

@media (max-width: 480px) {
  .policy-inner { padding: 32px 20px; }
  .policy-inner h2 { font-size: 18px; }
  .policy-intro { padding: 16px 18px; }
  .contact-box { padding: 22px 20px; }
}