/* --- 1. HERO HEADER --- */
.privacy-hero {
  background-color: #f8fafc; /* Light gray bg */
  padding: calc(var(--nav-height) + 60px) 0 60px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.privacy-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.privacy-hero p {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* --- 2. MAIN LAYOUT (Sidebar + Content) --- */
.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr; /* Sidebar width + Remaining space */
  gap: 80px;
  padding: 60px 20px 120px;
}

/* --- 3. SIDEBAR (Sticky) --- */
.sidebar {
  position: relative;
}

.toc-nav {
  position: sticky;
  top: 120px; /* Sticks 120px from top of screen */
}

.toc-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.toc-link {
  display: block;
  padding: 8px 0 8px 16px;
  font-size: 14px;
  color: var(--text-light);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.toc-link:hover,
.toc-link.active {
  color: var(--brand-red);
  border-left-color: var(--brand-red);
  padding-left: 20px;
  font-weight: 500;
}

/* --- 4. CONTENT AREA --- */
.privacy-content {
  max-width: 800px; /* Optimal reading width */
}

.content-block {
  margin-bottom: 60px;
  scroll-margin-top: 120px; /* Offset for sticky header when scrolling */
}

.content-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569; /* Slate 600 */
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: #334155; /* Slate 700 */
  line-height: 1.6;
}

/* Divider Line */
.divider {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 40px 0;
}

/* --- COMPONENTS --- */

/* Info Card (Icon + Text) */
.info-card {
  display: flex;
  gap: 20px;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: 0.2s;
}

.info-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: #fef2f2; /* Light Red BG */
  color: var(--brand-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.info-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Alert Box (Green/Gray) */
.alert-box {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.alert-box i {
  color: #16a34a;
  font-size: 24px;
  margin-top: 2px;
}

.alert-box p {
  color: #166534;
  font-size: 15px;
  margin: 0;
}

/* Clean List (Bullets) */
.clean-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #475569;
  line-height: 1.6;
}

.clean-list li::before {
  content: "•";
  color: var(--brand-red);
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
  line-height: 1;
  top: -2px;
}

/* --- 5. DARK CONTACT CARD (Force White) --- */
.contact-card {
  background-color: #0f172a; /* Slate 900 */
  color: #ffffff;
  padding: 32px;
  padding-bottom: 7px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

/* Force Header White */
.contact-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff !important; /* Force Override */
  margin-bottom: 8px;
}

/* Force Description White */
.card-desc {
  font-size: 15px;
  color: #ffffff !important;
  margin-bottom: 24px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Layout */
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

/* --- LEFT COLUMN --- */
.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #ffffff !important;
}

/* Force Icons White */
.icon-row i {
  font-size: 18px;
  margin-top: 3px;
  color: #ffffff !important;
}

/* Force Spans and Links White */
.icon-row span,
.icon-row a {
  font-size: 14px;
  color: #ffffff !important; /* Overrides global link colors */
}

.icon-row a {
  text-decoration: none;
  transition: opacity 0.2s;
}

.icon-row a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* --- RIGHT COLUMN --- */
.company-info-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ffffff !important;
  font-size: 14px;
}

.company-info-col strong {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.company-info-col span {
  color: #ffffff !important;
  opacity: 0.9;
}

/* Divider */
.card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

/* Footer Text */
.card-footer-text {
  font-size: 13px;
  color: #ffffff !important;
  margin-bottom: 0;
  opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-card {
    padding: 24px;
  }
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 992px) {
  /* Stack layout vertically on tablets/mobile */
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Hide sidebar or move it if preferred */
  .sidebar {
    display: none;
  }

  /* Adjust Contact Card padding */
  .contact-card {
    padding: 32px;
  }
  .contact-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .company-info-col {
    margin-top: 0;
  }
}

/* --- CUSTOM BULLET LIST --- */
.bullet-list {
  margin-top: 12px;
  padding-left: 0;
  list-style: none; /* Remove default ugly bullets */
}

.bullet-list li {
  position: relative;
  padding-left: 24px; /* Space for the custom dot */
  margin-bottom: 8px;
  font-size: 15px;
  color: #475569; /* Slate 600 */
  line-height: 1.6;
}

/* The Red Dot */
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px; /* Center vertically relative to text line */
  width: 6px;
  height: 6px;
  background-color: var(--brand-red); /* Your Brand Color */
  border-radius: 50%; /* Makes it a circle */
}
