body {
    background-color: #0A0A0A; /* Body background color from custom palette */
    color: var(--color-text-main, #FFF6D6); /* Default text color for the page */
}

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

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    overflow: hidden;
    background-color: #0A0A0A;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-privacy-policy__hero-content {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 20px;
    z-index: 1;
    color: #FFF6D6;
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD36B;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
    line-height: 1.2;
    max-width: 100%;
    text-align: center;
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background color */
    color: #FFF6D6; /* Text Main color */
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #F2C14E;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #3A2A12; /* Border color */
    padding-bottom: 10px;
}

.page-privacy-policy__subsection-title {
    font-size: 1.6em;
    color: #FFD36B;
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
}

.page-privacy-policy__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #FFF6D6;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #FFF6D6;
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__image-block {
    margin: 40px 0;
    text-align: center;
}

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

.page-privacy-policy__contact-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-privacy-policy__contact-list .page-privacy-policy__list-item {
    font-size: 1.1em;
    margin-bottom: 12px;
}

.page-privacy-policy__contact-link {
    color: #F2C14E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
    color: #FFD36B;
    text-decoration: underline;
}

.page-privacy-policy__btn-secondary {
    display: inline-block;
    background: #111111; /* Card BG color */
    color: #F2C14E;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #3A2A12; /* Border color */
    cursor: pointer;
    margin-top: 20px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-secondary:hover {
    background: #F2C14E;
    color: #111111;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

/* FAQ Section */
.page-privacy-policy__faq-list {
  margin-top: 40px;
}

details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #111111; /* Card BG color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B;
  font-size: 1.1em;
  font-weight: 600;
}

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

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-privacy-policy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A;
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
  font-size: 1.0em;
  line-height: 1.6;
}

.page-privacy-policy__faq-answer p {
    margin-top: 15px;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }

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

    .page-privacy-policy__subsection-title {
        font-size: 1.5em;
    }

    .page-privacy-policy__intro-text,
    .page-privacy-policy__text-block,
    .page-privacy-policy__list-item,
    .page-privacy-policy__faq-qtext,
    .page-privacy-policy__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: 10px; /* Small top padding for mobile */
        padding-bottom: 30px;
    }

    .page-privacy-policy__hero-image-wrapper {
        max-height: 300px;
    }

    .page-privacy-policy__hero-image {
        object-fit: contain !important; /* Ensure image is not cropped */
        aspect-ratio: unset !important; /* Remove fixed aspect ratio */
        filter: brightness(0.8); /* Slightly less dark for mobile */
    }

    .page-privacy-policy__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Responsive font size for H1 */
        margin-bottom: 15px;
    }

    .page-privacy-policy__intro-text {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

    .page-privacy-policy__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-privacy-policy__content-area {
        padding: 40px 0;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
        text-align: center; /* Center align for mobile */
    }

    .page-privacy-policy__subsection-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 12px;
        text-align: center; /* Center align for mobile */
    }

    .page-privacy-policy__text-block {
        font-size: 0.95em;
        margin-bottom: 15px;
        text-align: justify; /* Justify text for better readability */
    }

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

    .page-privacy-policy__list-item {
        font-size: 0.95em;
        margin-bottom: 8px;
    }

    .page-privacy-policy__image-block {
        margin: 30px 0;
    }

    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__contact-list {
        margin-bottom: 25px;
    }

    .page-privacy-policy__contact-list .page-privacy-policy__list-item {
        font-size: 1em;
    }

    .page-privacy-policy__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    details.page-privacy-policy__faq-item {
      margin-bottom: 10px;
    }

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

    .page-privacy-policy__faq-qtext {
      font-size: 0.95em;
    }

    .page-privacy-policy__faq-toggle {
      font-size: 24px;
      width: 25px;
      margin-left: 10px;
    }

    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
      padding: 0 20px 15px;
      font-size: 0.9em;
    }
}