/* Privacy Policy page — reuses the same page-header/breadcrumbs pattern
   as about.css/delivery.css (each content page keeps its own small CSS
   file rather than sharing one, matching how this codebase is already
   organized) plus a simple, readable style for the legal text itself.
   main.section-padding (not plain .section-padding) is deliberate — see
   the identical note in css/about.css/css/delivery.css: it out-specifies
   base.css's ".section-padding { padding-top: 100px }" (and responsive.css's
   mobile 50px) so this page stays tight under the header instead of
   leaving a big empty gap above the breadcrumbs/title. */
main.section-padding { padding-top: 10px; padding-bottom: 60px; }

.page-header { padding: 10px 0 20px; border-bottom: 1px solid var(--border-light); margin-bottom: 30px; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 15px; }
.breadcrumbs a { color: #888; transition: 0.3s; }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs i { font-size: 9px; color: #555; }
.breadcrumbs span { color: #ccc; }
.page-title { font-size: clamp(22px, 1.2vw + 17.7px, 32px); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #fff; }
.page-subtitle { color: #999; font-size: 15px; margin-top: 15px; line-height: 1.6; max-width: 700px; }

.legal-updated { color: #666; font-size: 13px; margin-bottom: 40px; }

.legal-section { max-width: 760px; margin-bottom: 40px; }
.legal-section h2 { color: #fff; font-size: 19px; font-weight: 500; margin-bottom: 16px; }
.legal-section p { color: #999; font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0 0 14px; padding-left: 20px; }
.legal-section li { color: #999; font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.legal-section li:last-child { margin-bottom: 0; }
.legal-section strong { color: #ccc; font-weight: 500; }
.legal-section a { color: var(--accent-gold); text-decoration: underline; }
.legal-section a:hover { color: #fff; }

@media (max-width: 767px) {
    .legal-section h2 { font-size: 17px; }
}
