/* style/privacy-policy.css */

/* --- General Page Styles --- */
.page-privacy-policy {
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg); /* Inherit from shared, assumed dark */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

/* Ensure body doesn't cause double padding if shared already handles it */
body.has-top-padding .page-privacy-policy {
    padding-top: 0;
}

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

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
  background-color: #003366; /* Main brand color for hero */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-privacy-policy__hero-section .page-privacy-policy__container {
  position: relative;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Content Area --- */
.page-privacy-policy__content-area {
  padding: 60px 0;
  background-color: var(--dark-bg); /* Assuming dark-bg is dark */
  color: #ffffff; /* Light text for dark background */
}

.page-privacy-policy__section-title {
  font-size: 32px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #FFCC00; /* Auxiliary color for section titles */
  border-bottom: 2px solid rgba(255, 204, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 17px;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-privacy-policy__list-item strong {
  color: #FFCC00;
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-privacy-policy__contact-link {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #e6b800;
  text-decoration: underline;
}

.page-privacy-policy__address {
  font-style: italic;
  color: #cccccc;
}

/* --- Image Styles --- */
.page-privacy-policy__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

.page-privacy-policy__image-caption {
  font-size: 15px;
  color: #cccccc;
  margin-top: 15px;
  font-style: italic;
}

/* --- CTA Banner at the end --- */
.page-privacy-policy__cta-banner {
  background-color: #003366; /* Main brand color */
  color: #ffffff;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFCC00;
}

.page-privacy-policy__cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFCC00;
}

.page-privacy-policy__cta-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
  border-radius: 10px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 40px;
  }
  .page-privacy-policy__description {
    font-size: 18px;
  }
  .page-privacy-policy__section-title {
    font-size: 28px;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 16px;
  }
  .page-privacy-policy__cta-title {
    font-size: 30px;
  }
  .page-privacy-policy__cta-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-privacy-policy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hero Section */
  .page-privacy-policy__hero-section {
    padding: 60px 0;
  }
  .page-privacy-policy__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    max-width: 100% !important; /* Button responsive */
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Content Area */
  .page-privacy-policy__content-area {
    padding: 40px 0;
  }
  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 15px;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }

  /* Images */
  .page-privacy-policy__image-wrapper {
    margin: 30px 0;
  }
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important; /* Ensure minimum size */
    box-sizing: border-box !important;
  }
  .page-privacy-policy__image-caption {
    font-size: 14px;
  }

  /* CTA Banner */
  .page-privacy-policy__cta-banner {
    padding: 40px 20px;
    margin-top: 40px;
  }
  .page-privacy-policy__cta-title {
    font-size: 26px;
  }
  .page-privacy-policy__cta-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-privacy-policy__cta-button--large {
    padding: 15px 35px;
    font-size: 18px;
    max-width: 100% !important; /* Button responsive */
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-privacy-policy__content-area img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures image covers the area without distortion if aspect ratio is off */
}

/* Ensure no CSS filter on images */
.page-privacy-policy img {
  filter: none !important; /* Explicitly disable any filter */
}