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-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 h2:first-of-type { margin-top: 0; }
.policy-inner p {
  font-family: var(--font-body); font-size: 17px; color: #505050;
  line-height: 1.75; margin-bottom: 14px;
}
.policy-inner strong { color: var(--navy); }

/* Fee table */
.cancellation-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0 32px;
  font-family: var(--font-body); font-size: 17px;
}
.cancellation-table thead tr {
  background: var(--navy); color: #fff;
}
.cancellation-table th {
  padding: 14px 20px; text-align: left;
  font-family: var(--font-card); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.cancellation-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  color: #505050;
}
.cancellation-table tbody tr:last-child td { border-bottom: none; }
.cancellation-table tbody tr:nth-child(even) td { background: #fafafa; }
.fee-high { color: var(--cerise); font-weight: 700; }

/* Notice box */

.cta-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-top: 40px;
  text-align: center;
}
.cta-box p {
  font-family: var(--font-body); font-size: 17px;
  color: rgba(255,255,255,0.8); margin-bottom: 20px;
}
.cta-box .btn-primary {
  font-family: var(--font-card); font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--cerise); color: #fff;
  padding: 14px 36px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; transition: background 0.2s;
}
.cta-box .btn-primary:hover { background: var(--cerise-dk); }
.cta-box .btn-arrow { display: inline-flex; transition: transform 0.2s ease; }
.cta-box .btn-primary:hover .btn-arrow { animation: arrowBounceRight 0.6s ease infinite; }
@keyframes arrowBounceRight {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

/* â”€â”€ 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 { font-size: 16px; }

  /* Fee table → stacked cards (nothing clipped, no sideways scroll) */
  .cancellation-table { display: block; width: 100%; }
  .cancellation-table thead { display: none; }
  .cancellation-table tbody { display: block; }
  .cancellation-table tbody tr {
    display: block;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 6px 16px 10px;
    margin-bottom: 12px;
  }
  .cancellation-table tbody tr:nth-child(even) td { background: none; }
  .cancellation-table td {
    display: block;
    border-bottom: none;
    padding: 8px 0;
    font-size: 16px;
    white-space: normal;
  }
  .cancellation-table td:not(:last-child) { border-bottom: 1px solid #eee; }
  .cancellation-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-card);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase;
    color: #909090;
    margin-bottom: 3px;
  }

  .cta-box { padding: 32px 28px; }
}

@media (max-width: 480px) {
  .policy-inner { padding: 32px 20px; }
  .policy-inner h2 { font-size: 18px; }
  .cta-box { padding: 28px 20px; }
  .cta-box .btn-primary { padding: 13px 26px; }
}