.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color, will be overridden by section specific colors */
    background-color: var(--page-bg-color); /* Default background from shared */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Enforce top-image, bottom-text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using brand colors for hero background */
    color: #ffffff; /* White text for dark background */
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    position: relative; /* For potential future overlays, but no text overlay on image itself */
    z-index: 1; /* Ensure image is below any potential future absolute elements */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default for desktop hero */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    height: 675px; /* Fixed height for desktop to maintain aspect ratio, but responsive for mobile */
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__hero-content {
    max-width: 800px;
    margin-top: 20px;
    z-index: 2;
    padding: 0 20px;
}

.page-privacy-policy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-privacy-policy__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width for responsive buttons */
    max-width: 100%;
    box-sizing: border-box;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    max-width: 300px; /* Limit individual button width */
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-privacy-policy__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

.page-privacy-policy__dark-bg {
    background-color: #2F6BFF; /* Main brand color for dark background */
    color: #ffffff;
}

.page-privacy-policy__light-bg {
    background-color: #FFFFFF; /* White for light background */
    color: #1F2D3D; /* Text Main color */
}

.page-privacy-policy__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.page-privacy-policy__dark-bg .page-privacy-policy__section-title {
    color: #ffffff;
}

.page-privacy-policy__light-bg .page-privacy-policy__section-title {
    color: #1F2D3D;
}

.page-privacy-policy__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.page-privacy-policy__dark-bg .page-privacy-policy__sub-title {
    color: #A5C4FF; /* Glow color for sub-titles on dark background */
}

.page-privacy-policy__light-bg .page-privacy-policy__sub-title {
    color: #2F6BFF; /* Main brand color for sub-titles on light background */
}

.page-privacy-policy__paragraph {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-privacy-policy__list-item strong {
    font-weight: 700;
}

.page-privacy-policy__content-area a {
    color: #A5C4FF; /* Glow color for links on dark background */
    text-decoration: underline;
}

.page-privacy-policy__light-bg .page-privacy-policy__content-area a {
    color: #2F6BFF; /* Main brand color for links on light background */
}

.page-privacy-policy__image-block {
    margin: 40px auto;
    text-align: center;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__image-caption {
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 10px;
    color: inherit; /* Inherit color from parent section */
}

.page-privacy-policy__last-updated {
    font-style: italic;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 30px;
    color: inherit;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color from custom palette */
    color: #1F2D3D; /* Text Main color */
}

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

.page-privacy-policy__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    color: #1F2D3D; /* Text Main */
    background-color: #FFFFFF;
    list-style: none; /* Hide default marker for summary */
}

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

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F6BFF;
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
}

.page-privacy-policy__cta-contact {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #6FA3FF; /* Auxiliary color */
    border-radius: 10px;
    color: #ffffff;
}

.page-privacy-policy__cta-contact .page-privacy-policy__paragraph {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.page-privacy-policy__cta-contact .page-privacy-policy__btn-primary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #ffffff;
}

.page-privacy-policy__cta-contact .page-privacy-policy__btn-primary:hover {
    background: #e0e0e0;
    color: #2F6BFF;
    border: 2px solid #e0e0e0;
}

/* Universal image and container responsive styles for content area (outside of media query, for general safety) */
.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box; /* Ensure padding/border is included in width */
}

.page-privacy-policy__section,
.page-privacy-policy__card,
.page-privacy-policy__container,
.page-privacy-policy__hero-section,
.page-privacy-policy__content-area,
.page-privacy-policy__faq-section,
.page-privacy-policy__image-block {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent horizontal scroll for these containers */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-privacy-policy__container {
        padding: 15px;
    }

    /* Hero Section */
    .page-privacy-policy__hero-section {
        padding-top: 10px !important; /* Small padding, shared.css handles body offset */
        padding-bottom: 30px;
    }

    .page-privacy-policy__hero-image {
        object-fit: contain !important; /* Ensure image is not cropped */
        height: auto !important; /* Override fixed height for mobile */
        aspect-ratio: unset !important; /* Allow natural aspect ratio */
        max-height: none !important; /* No max-height */
        width: 100% !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

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

    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

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