.priv-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.priv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,162,39,0.1) 0%, transparent 60%);
}
.priv-hero-content {
  position: relative;
  z-index: 1;
}
.priv-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.priv-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.priv-main {
  padding: 64px 0 100px;
  background: var(--off-white);
}

.priv-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.priv-alert {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 48px;
}
.priv-alert strong {
  color: var(--gold);
}

.priv-section {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 40px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.priv-section:hover {
  box-shadow: 0 4px 20px rgba(10,22,40,0.07);
}
.priv-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.priv-section p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.priv-section p:last-child {
  margin-bottom: 0;
}
.priv-section ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.priv-section ul li {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.priv-section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.priv-section a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.priv-section a:hover {
  color: var(--gold-dark);
}

.priv-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}
.priv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.priv-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.priv-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}
.priv-table tr:last-child td {
  border-bottom: none;
}
.priv-table td code {
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--navy);
}

.priv-contact-box {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-600);
}
.priv-contact-box strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.priv-contact-box a {
  color: var(--navy) !important;
  font-weight: 500 !important;
}

.priv-back {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 640px) {
  .priv-section {
    padding: 24px 20px;
  }
}
