/* ===== PRIVACY POLICY PAGE ===== */

/* Remove default padding */
body.page-template-privacy-policy .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* Hero Section */
.privacy-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.privacy-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--gb-white);
}

/* Main Content Section */
.privacy-content {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.privacy-content-inner {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gb-text);
}

.privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gb-border);
}

.privacy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin: 1.5rem 0 0.75rem;
}

.privacy-content p {
  margin-bottom: 1rem;
}

.privacy-content ul,
.privacy-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  color: var(--gb-navy);
  text-decoration: underline;
}

.privacy-content a:hover {
  color: var(--gb-gold);
}

/* Table Styling - Responsive */
.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.privacy-content th,
.privacy-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--gb-border);
}

.privacy-content th {
  background: var(--gb-navy);
  color: var(--gb-white);
  font-weight: 600;
}

.privacy-content tr:nth-child(even) {
  background: var(--gb-gray);
}

.privacy-content tr:hover {
  background: #f5f5f5;
}

/* Table wrapper for horizontal scroll on mobile */
.privacy-content .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.privacy-content .table-wrapper table {
  margin: 0;
  min-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 1.75rem;
  }

  .privacy-hero,
  .privacy-content {
    padding: 3rem 1.5rem;
  }

  .privacy-content h2 {
    font-size: 1.25rem;
  }

  .privacy-content table {
    font-size: 0.85rem;
  }

  .privacy-content th,
  .privacy-content td {
    padding: 0.5rem 0.75rem;
  }
}
