.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #F5F7FA; /* Background color from custom scheme */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding instead of --header-offset */
    background-color: #E53935; /* Main brand color as hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for desktop hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Cover for desktop, will change to contain for mobile */
    display: block;
    max-width: 100%;
}

.page-privacy-policy__hero-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #FFFFFF; /* Card BG as content background */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-50px); /* Overlap with image slightly */
    z-index: 1;
    position: relative;
    color: #333333; /* Main text color */
}

.page-privacy-policy__main-title {
    font-size: 3.2em; /* Using em for relative sizing */
    font-weight: 700;
    color: #E53935; /* Main brand color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box; /* Include padding in width */
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Custom button gradient */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

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

.page-privacy-policy__btn-secondary {
    background-color: #FFFFFF;
    color: #E53935; /* Main brand color for text */
    border: 2px solid #E53935; /* Main brand color for border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__btn-secondary:hover {
    background-color: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: #F5F7FA;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #E53935; /* Main brand color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 700;
}

.page-privacy-policy__sub-title {
    font-size: 1.6em;
    color: #333333; /* Main text color */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}

.page-privacy-policy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333; /* Main text color */
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #333333; /* Main text color */
}

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

.page-privacy-policy__list strong {
    color: #E53935; /* Highlight important list items */
}

.page-privacy-policy__image-figure {
    margin: 30px 0;
    text-align: center;
    background-color: #FFFFFF; /* Card BG */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 100%; /* Ensure figure doesn't overflow */
    box-sizing: border-box;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    margin: 0 auto;
}

.page-privacy-policy__image-caption {
    font-size: 0.9em;
    color: #777777;
    margin-top: 10px;
    text-align: center;
}

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

.page-privacy-policy__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.page-privacy-policy__contact-list li strong {
    margin-right: 10px;
    color: #E53935;
}

.page-privacy-policy__contact-list a {
    color: #E53935; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-list a:hover {
    text-decoration: underline;
    color: #FF5A4F; /* Auxiliary color on hover */
}

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

details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  color: #333333; /* Ensure text color is dark for light background */
}
details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #333333; /* Ensure question text color is dark */
}
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: #f5f5f5;
}
.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333; /* Ensure qtext color is dark */
}
.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E53935; /* Use brand color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555; /* Ensure answer text color is readable */
}
details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

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

    /* HERO Section */
    .page-privacy-policy__hero-section {
        padding-top: 10px; /* Still 10px for mobile */
    }

    .page-privacy-policy__hero-image-wrapper {
        max-height: 400px; /* Adjust max height for mobile hero */
    }

    .page-privacy-policy__hero-image {
        object-fit: contain !important; /* Mobile hero image must contain */
        aspect-ratio: unset !important; /* Reset aspect ratio for contain */
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__hero-content {
        padding: 25px 15px;
        transform: translateY(-30px); /* Less overlap */
        border-radius: 5px;
    }

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

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    /* Content Area */
    .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: 30px;
        margin-bottom: 20px;
    }

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

    .page-privacy-policy__text-block,
    .page-privacy-policy__list li,
    .page-privacy-policy__contact-list li {
        font-size: 1em;
    }

    /* General Image Responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__image-figure {
        padding: 10px;
        margin: 20px 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* FAQ Section Mobile */
    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px;
        flex-wrap: wrap; /* Allow question text to wrap */
    }
    .page-privacy-policy__faq-qtext {
        font-size: 15px;
        width: calc(100% - 40px); /* Adjust width to make space for toggle */
    }
    .page-privacy-policy__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
        padding: 0 15px 15px;
    }
    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer p {
        font-size: 0.95em;
    }
}

/* --- Additional media query for smaller tablets (max-width: 1024px) if needed, but 768px is primary for mobile --- */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        max-width: 800px;
        padding: 30px 20px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__intro-text {
        font-size: 1.1em;
    }
    .page-privacy-policy__container {
        max-width: 960px;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
}

/* Color contrast rules */
.page-privacy-policy__light-bg {
    background: #F5F7FA;
    color: #333333;
}
.page-privacy-policy__dark-bg {
    background: #E53935;
    color: #ffffff;
}
.page-privacy-policy__card {
    background: #FFFFFF; /* Card BG */
    color: #333333; /* Text Main */
    border: 1px solid #E0E0E0; /* Border */
}
.page-privacy-policy a {
    color: #E53935; /* Default link color from main brand color */
}
.page-privacy-policy a:hover {
    color: #FF5A4F; /* Auxiliary color on hover */
}