/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for readability on light background */
  background: var(--background-color, #ffffff); /* Use shared background variable, fallback to white */
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient for hero */
  text-align: center;
  overflow: hidden; /* Prevent content overflow */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #26A9E0; /* Primary color for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-image-wrapper {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Sections */
.page-privacy-policy__content-section {
  padding: 60px 0;
  background: #ffffff; /* White background for content for optimal readability */
  color: #333333;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Primary color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}