/* style/privacy-policy.css */
:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border: #244D84;
  --glow: #4FA8FF;
  --gold: #F2C14E;
  --divider: #1B3357;
  --deep-navy: #08162B;
}

.page-privacy-policy {
  background-color: var(--deep-navy);
  color: var(--text-main);
  line-height: 1.6;
  font-family: Arial, sans-serif; /* Added a generic sans-serif font */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile first, then row for desktop */
  align-items: center;
  padding: 10px 0 40px; /* Small top padding, larger bottom padding */
  text-align: center;
  background: linear-gradient(180deg, var(--deep-navy) 0%, var(--card-bg) 100%);
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain max width for hero image */
  margin-bottom: 30px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Ensure no filter is applied */
}

.page-privacy-policy__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-privacy-policy__main-title {
  font-weight: 700;
  color: var(--gold); /* Using gold for main title as per WOW88 style */
  margin-bottom: 20px;
  /* No fixed font-size, rely on clamp if needed, but for now just let it scale */
}

.page-privacy-policy__intro-text {
  font-size: 1.125rem; /* 18px */
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-privacy-policy__content-area {
  padding: 40px 0;
}

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

.page-privacy-policy__section-title {
  font-size: 1.8rem; /* 28.8px */
  font-weight: 600;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 10px;
}

.page-privacy-policy__text {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Ensure no filter is applied */
  min-width: 200px; /* Enforce minimum size if container allows */
  min-height: 200px;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: var(--button); /* Use custom button gradient */
  color: var(--text-main);
  transition: background 0.3s ease;
  margin-top: 30px;
  min-height: 44px; /* Touch target size */
}

.page-privacy-policy__contact-button:hover {
  background: linear-gradient(180deg, #3A89FF 0%, #1A5CBF 100%); /* Slightly lighter hover */
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-privacy-policy__hero-section {
    padding-top: 40px; /* More padding for desktop */
  }

  .page-privacy-policy__hero-image-wrapper {
    margin-bottom: 40px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Example clamp for H1 */
  }

  .page-privacy-policy__intro-text {
    font-size: 1.25rem; /* 20px */
  }

  .page-privacy-policy__section-title {
    font-size: 2rem; /* 32px */
  }
}

/* Mobile specific rules for images and general layout */
@media (max-width: 768px) {
  .page-privacy-policy__container {
    padding: 0 16px; /* Smaller padding on mobile */
  }

  .page-privacy-policy__hero-section {
    padding-bottom: 30px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem); /* Smaller H1 on mobile */
  }

  .page-privacy-policy__intro-text {
    font-size: 1rem; /* 16px */
  }

  .page-privacy-policy__section-title {
    font-size: 1.5rem; /* 24px */
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__text {
    font-size: 0.9375rem; /* 15px */
  }

  .page-privacy-policy__hero-image,
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    box-sizing: border-box; /* Include padding/border in width calculation */
  }

  /* Enforce min-size for content area images, even on mobile, as per rules */
  .page-privacy-policy__content-area .page-privacy-policy__image {
      min-width: 200px;
      min-height: 200px;
      width: 100%; /* Ensure they still fill their container */
      height: auto;
  }

  .page-privacy-policy__contact-button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
    margin-left: auto;
    margin-right: auto;
    display: block; /* Make it a block element to center with margin auto */
  }
}