:root {
  --primary-color: #2C3E50; /* Deep Blue */
  --secondary-color: #F39C12; /* Bright Orange */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #2a3848; /* Slightly lighter than primary for contrast */
  --border-color: #e0e0e0;
}

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-privacy-policy .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Specific for Privacy Policy */
.page-privacy-policy .hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark)); /* Darker gradient */
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy .hero-content-privacy {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-privacy-policy .hero-content-privacy h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Highlight with orange */
  font-weight: bold;
}

.page-privacy-policy .hero-content-privacy p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0; /* Slightly lighter text for readability */
}

.page-privacy-policy .hero-image-privacy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex; /* Use flex to center image */
  justify-content: center;
  align-items: center;
  opacity: 0.15; /* Subtle background image */
  z-index: 1;
}