/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8; /* Light background for the main content area */
  padding-top: 0; /* Assumes shared.css handles body padding-top */
}

.page-privacy-policy__hero-section {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.page-privacy-policy__hero-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

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

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-privacy-policy__main-title {
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-privacy-policy__intro-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-privacy-policy__section {
  margin-bottom: 50px;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.page-privacy-policy__section-title {
  font-size: 28px;
  color: #FFD700; /* Brand gold */
  margin-bottom: 20px;
  font-weight: bold;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-privacy-policy__sub-section {
  margin-bottom: 30px;
  padding-left: 20px;
}

.page-privacy-policy__sub-section-title {
  font-size: 22px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__content-block p {
  margin-bottom: 15px;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding: 0;
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: #333333;
}

.page-privacy-policy__list li strong {
  color: #000000;
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__contact-section {
  text-align: left;
}

.page-privacy-policy__cta-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Brand gold */
  color: #000000; /* Black text for contrast */
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 32px;
  }

  .page-privacy-policy__intro-text {
    font-size: 17px;
  }

  .page-privacy-policy__section-title {
    font-size: 26px;
  }

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

  .page-privacy-policy__content-area {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__intro-text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-privacy-policy__section-title {
    font-size: 24px;
    padding-left: 10px;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 18px;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }

  /* Image responsive adaptation */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-privacy-policy__cta-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}