.page-privacy-policy {
  color: #FFF1E8; /* Text Main */
  background: #140C0C; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  padding-top: 10px; /* Small top padding as shared.css handles body padding */
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFF1E8; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__intro-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFF1E8; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #FFF1E8; /* Text Main */
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #140C0C; /* Background */
}

.page-privacy-policy__section-wrapper {
  background: #2A1212; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__article {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #6A1E1E; /* Border color */
}

.page-privacy-policy__article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: #F3C54D; /* Gold */
  margin-bottom: 25px;
  font-weight: bold;
  border-left: 5px solid #C61F1F; /* Primary color */
  padding-left: 15px;
  line-height: 1.3;
}

.page-privacy-policy__sub-title {
  font-size: 1.6rem;
  color: #E53030; /* Secondary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__paragraph {
  font-size: 1.1rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.page-privacy-policy__list-item {
  font-size: 1.1rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-privacy-policy__list-item::before {
  content: '•';
  color: #F3C54D; /* Gold */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-privacy-policy a {
  color: #F3C54D; /* Gold */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #FFB04A;
}

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

.page-privacy-policy__contact-item {
  font-size: 1.1rem;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-privacy-policy__contact-item::before {
  content: '→';
  color: #C61F1F; /* Primary color */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
  }

  .page-privacy-policy__hero-content {
    padding: 15px;
    width: 95%;
  }

  .page-privacy-policy__main-title {
    font-size: 2rem !important;
    margin-bottom: 10px;
  }

  .page-privacy-policy__intro-text {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }

  .page-privacy-policy__cta-button {
    padding: 10px 20px !important;
    font-size: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-privacy-policy__section-wrapper {
    padding: 20px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 1rem;
  }

  .page-privacy-policy__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 20px auto;
  }

  /* Ensure all content containers are responsive */
  .page-privacy-policy__article,
  .page-privacy-policy__list,
  .page-privacy-policy__contact-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}