/* ============================================================
   Euro Vapour — Policy Pages
   ============================================================ */

.policy-main {
  padding-top: var(--header-h);
}

/* Hero banner */
.policy-hero {
  background: var(--navy-deep);
  padding: 60px 0 52px;
  border-bottom: 2px solid var(--accent);
}
.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 8px 0 10px;
  text-transform: uppercase;
}
.policy-hero p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}

/* Body */
.policy-body {
  padding: 64px 0 80px;
  background: var(--white);
}

.policy-container {
  max-width: 820px;
}

/* Sections */
.policy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-of-type {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.policy-section p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul,
.policy-section ol {
  padding-left: 20px;
  margin: 12px 0;
}
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-section li {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy-section a {
  color: var(--accent);
  text-decoration: underline;
}
.policy-section a:hover {
  color: var(--accent-dk);
}

/* Table */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: .92rem;
}
.policy-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .03em;
}
.policy-table td {
  padding: 11px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.policy-table tr:nth-child(even) td {
  background: var(--light-bg);
}
.policy-table tr:last-child td {
  border-bottom: none;
}

/* Contact callout */
.policy-contact-box {
  background: var(--light-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-top: 8px;
}
.policy-contact-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.policy-contact-box p {
  font-size: .97rem;
  color: var(--text-muted);
  margin: 0;
}
.policy-contact-box a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 700px) {
  .policy-hero { padding: 48px 0 40px; }
  .policy-body { padding: 48px 0 60px; }
  .policy-table { font-size: .84rem; }
  .policy-table th, .policy-table td { padding: 10px 12px; }
  .policy-contact-box { padding: 22px 20px; }
}
