/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #f8f9fa;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color, #007bff), #0056b3);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-privacy-policy__hero-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-privacy-policy__content-section {
  padding: 80px 20px;
}

.page-privacy-policy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-privacy-policy__dark-section {
  background-color: var(--primary-color, #007bff);
  color: #ffffff;
}

.page-privacy-policy__dark-section .page-privacy-policy__section-title,
.page-privacy-policy__dark-section .page-privacy-policy__text-block,
.page-privacy-policy__dark-section .page-privacy-policy__list-item,
.page-privacy-policy__dark-section .page-privacy-policy__contact-item {
  color: #ffffff;
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color, #007bff);
}

.page-privacy-policy__dark-section .page-privacy-policy__section-title {
  color: var(--secondary-color, #ffc107);
}

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

.page-privacy-policy__item-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-privacy-policy__item {
  flex: 1 1 calc(50% - 15px);
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-privacy-policy__item:hover {
  transform: translateY(-5px);
}

.page-privacy-policy__item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color, #007bff);
}

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

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

.page-privacy-policy__content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  display: block;
  object-fit: cover;
}

.page-privacy-policy__contact-section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-privacy-policy__contact-item {
  font-size: 18px;
  margin-bottom: 15px;
}

.page-privacy-policy__contact-item a {
  color: var(--secondary-color, #ffc107);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-item a:hover {
  color: #ffffff;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color, #ffc107);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-section,
  .page-privacy-policy__contact-section {
    padding: 40px 15px;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__hero-title {
    font-size: 32px;
  }

  .page-privacy-policy__hero-description {
    font-size: 16px;
  }

  .page-privacy-policy__item-group {
    flex-direction: column;
    gap: 20px;
  }

  .page-privacy-policy__item {
    flex: 1 1 100%;
    padding: 25px;
  }

  .page-privacy-policy__item-title {
    font-size: 20px;
  }

  .page-privacy-policy__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 15px;
  }

  .page-privacy-policy__hero-image,
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    margin: 20px auto;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-privacy-policy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

/* Ensure all images are responsive */
.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__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,
  .page-privacy-policy__content-section,
  .page-privacy-policy__contact-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}