/* style/privacy-policy.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff; /* Default body background is white */
}

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

.page-privacy-policy__hero-section {
  padding: 120px 0 60px; /* Adjusted padding-top for fixed header */
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-light);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-dark);
  font-weight: bold;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
}

.page-privacy-policy__content-section.page-privacy-policy__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-privacy-policy__content-section.page-privacy-policy__dark-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-privacy-policy__content-section.page-privacy-policy__dark-section .page-privacy-policy__section-title,
.page-privacy-policy__content-section.page-privacy-policy__dark-section .page-privacy-policy__sub-title {
  color: var(--text-light);
}

.page-privacy-policy__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__btn-primary:hover {
  background: darken(var(--primary-color), 10%); /* Placeholder for darker shade */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__hero-section .page-privacy-policy__btn-secondary {
  color: var(--text-light);
  border-color: var(--text-light);
}

.page-privacy-policy__content-section.page-privacy-policy__dark-section .page-privacy-policy__btn-secondary {
  color: var(--text-light);
  border-color: var(--text-light);
}

.page-privacy-policy__content-section.page-privacy-policy__light-bg .page-privacy-policy__btn-secondary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-privacy-policy__btn-secondary:hover {
  background: var(--text-light);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.6em;
  }
  .page-privacy-policy p,
  .page-privacy-policy__list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 100px 0 40px; /* Mobile padding-top for fixed header */
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
    padding: 0 15px;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
    padding: 0 15px;
  }
  .page-privacy-policy p,
  .page-privacy-policy__list li {
    font-size: 0.95em;
    padding: 0 15px;
  }
  .page-privacy-policy__list {
    padding-left: 35px; /* Adjust for list style */
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
  .page-privacy-policy__content-section {
    padding: 40px 0;
  }
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 15px;
    box-sizing: border-box !important;
  }
}

/* Ensure images don't overflow on mobile */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-section,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-privacy-policy__hero-section {
    padding-top: 100px !important; /* Specific mobile padding-top for hero */
  }
}