/* style/privacy-policy.css */

/* Base styles for the page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is #000000 (dark), so use light text */
    background-color: #000000; /* Ensure main content background matches body */
}

/* Fixed Header Spacing */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #000000;
    color: #ffffff;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.page-privacy-policy__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__content-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #26A9E0; /* Brand color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: left;
}

.page-privacy-policy__section-title--center {
    text-align: center;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-privacy-policy__paragraph a {
    color: #26A9E0; /* Brand color for links */
    text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
    color: #ffffff;
}

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

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* No filter allowed */
}

.page-privacy-policy__contact-link {
    color: #26A9E0;
    text-decoration: underline;
}

.page-privacy-policy__contact-link:hover {
    color: #ffffff;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.page-privacy-policy__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-privacy-policy__faq-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for items */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #ffffff; /* Question text color */
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.08); /* Slightly darker for clickable area */
    transition: background-color 0.3s ease;
    list-style: none; /* For details tag */
}

.page-privacy-policy__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details tag */
}

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

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
    color: #ffffff;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #26A9E0; /* Brand color for toggle icon */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    content: "−";
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.03); /* Lighter background for answer */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-privacy-policy__description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-privacy-policy__content-section,
    .page-privacy-policy__faq-section {
        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__paragraph {
        font-size: 0.95em;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-privacy-policy__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }

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

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

    /* Button styles (not explicitly used in this content, but for completeness) */
    .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-left: 15px;
        padding-right: 15px;
    }
}

/* Contrast Fixes (if needed, but already handled by dark-bg/light-text) */
.page-privacy-policy__dark-bg {
    color: #ffffff;
    background: #000000;
}

.page-privacy-policy__light-bg {
    color: #333333;
    background: #ffffff;
}

/* Button styles (not explicitly used in this content, but for completeness) */
.page-privacy-policy__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid transparent;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__btn-primary:hover {
    background-color: #1a7bb7;
}