.page-privacy-policy {
    color: #ffffff; /* Light text on dark body background #0a0a0a */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

.page-privacy-policy__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    background-color: #0a0a0a; /* Match body background for seamless transition */
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* For image */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-privacy-policy__main-title {
    font-size: 3em;
    font-weight: bold;
    color: #26A9E0; /* Brand color for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
}

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

.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #26A9E0; /* Brand color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(38, 169, 224, 0.5);
    padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

.page-privacy-policy__list-item strong {
    color: #ffffff;
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-privacy-policy__cta-container {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure responsive */
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-privacy-policy__btn-primary:hover {
    background-color: #d16b06;
    transform: translateY(-3px);
}

.page-privacy-policy__faq-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff; /* Light text */
}

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

.page-privacy-policy__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly visible card on dark bg */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15); /* Slightly darker for question header */
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-privacy-policy__faq-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0; /* Brand color for toggle icon */
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    transform: rotate(45deg); /* Plus to X / minus */
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px 25px; /* Adjust padding for expanded state */
}

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

/* Links within content */
.page-privacy-policy a {
    color: #26A9E0; /* Brand color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #EA7C07; /* Login color on hover for links */
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-privacy-policy__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
        padding-bottom: 40px;
    }
    .page-privacy-policy__main-title {
        font-size: 2em;
        padding: 0 15px;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
        padding: 0 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
        padding: 0 15px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        padding: 0 15px;
    }
    .page-privacy-policy__container {
        padding: 15px;
    }

    /* Mobile image responsive adaptation */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-privacy-policy__hero-image,
    .page-privacy-policy__content-image {
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 4px !important;
    }

    /* Mobile button responsive adaptation */
    .page-privacy-policy__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 15px !important;
        margin: 0 15px;
    }
    .page-privacy-policy__cta-container {
        padding: 0 15px;
    }

    /* FAQ section mobile adaptation */
    .page-privacy-policy__faq-question,
    .page-privacy-policy__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-bottom: 15px !important;
    }
    .page-privacy-policy__faq-title {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__faq-question {
        padding: 15px;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 15px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 10px 15px 15px;
    }
}