/* style/privacy-policy.css */

/* --- Base Styles and Layout --- */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main on Background */
  background-color: #0D0E12; /* Background */
}

.page-privacy-policy__section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Ensure dark background for contrast */
}

.page-privacy-policy__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  max-width: 1200px; /* Max width for image within content */
  margin: 0 auto;
}

.page-privacy-policy__hero-content {
  text-align: center;
  padding: 40px 20px 0;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual appeal */
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0) 0%, #0D0E12 50%);
  padding-top: 80px;
}