/* style/privacy-policy.css */

/* General Styles for Privacy Policy Page */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  min-height: 400px; /* Ensure hero section has some height */
  justify-content: center;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  box-sizing: border-box; /* Added for button responsive */
  white-space: normal; /* Added for button responsive */
  word-wrap: break-word; /* Added for button responsive */
}

.page-privacy-policy__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #17191F; /* Card BG - for content section */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin-top: -80px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 3;
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #FF8C1A; /* Main color */
  margin-bottom: 25px;
  border-bottom: 2px solid #A84F0C; /* Border */
  padding-bottom: 10px;
  font-weight: 600;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #FFF3E6;
}

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

.page-privacy-policy__list li strong {
  color: #FFB04D; /* Glow */
}

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

.page-privacy-policy a:hover {
  color: #FFA53A; /* Auxiliary color */
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #0D0E12; /* Background */
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border */
  width: 100%; /* Added for container responsive */
  max-width: 100%; /* Added for container responsive */
  box-sizing: border-box; /* Added for container responsive */
  overflow: hidden; /* Added for container responsive */
}

.page-privacy-policy__cta-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFB04D; /* Glow */
  font-weight: 600;
}

.page-privacy-policy__btn-lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #A84F0C; /* Border */
}

.page-privacy-policy__faq-list {
  margin-top: 30px;
}

.page-privacy-policy__faq-item {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
  background-color: #FF8C1A; /* Main color when open */
  color: #ffffff;
  border-bottom: 1px solid #D96800; /* Deep Orange */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question .page-privacy-policy__faq-qtext {
  color: #ffffff;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  color: #ffffff;
}

.page-privacy-policy__faq-question::-webkit-details-marker {
  display: none;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #FFB04D;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #FFF3E6;
  background-color: #0D0E12; /* Background */
  border-top: 1px solid #A84F0C; /* Border */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding for mobile */
  }

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

  .page-privacy-policy__main-title {
    font-size: 2em;
  }

  .page-privacy-policy__intro-text {
    font-size: 1em;
  }

  .page-privacy-policy__content-area,
  .page-privacy-policy__cta-wrapper,
  .page-privacy-policy__faq-section {
    padding: 30px 15px !important;
    margin-top: -60px; /* Adjust overlap for mobile */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.3em;
  }

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

  /* Button responsive for mobile */
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-lg {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-privacy-policy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-privacy-policy__faq-answer {
    padding: 15px 20px;
  }
}