/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background, so light text */
    background-color: transparent; /* Inherit from body or shared.css */
}

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

.page-privacy-policy__hero-section {
    background-color: #000000; /* Primary dark background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-privacy-policy__main-heading {
    font-size: 2.8em;
    color: #FFD700; /* Gold brand color for main heading */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-privacy-policy__sub-heading {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text for contrast */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000;
}

.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: #000000; /* Ensure a consistent dark background for content */
}

.page-privacy-policy__section-heading {
    font-size: 2em;
    color: #FFD700; /* Gold for section headings */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-privacy-policy__sub-section-heading {
    font-size: 1.5em;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #ffffff;
}

.page-privacy-policy__paragraph a {
    color: #FFD700; /* Gold links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover {
    color: #DC143C; /* Deep red on hover for links */
}

.page-privacy-policy__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #ffffff;
}

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

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

.page-privacy-policy__image {
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2); /* Gold-tinted shadow */
    max-width: 100%;
    height: auto;
}

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

.page-privacy-policy__faq-item {
    background-color: rgba(255, 215, 0, 0.1); /* Slightly transparent gold background */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #FFD700;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #000000; /* Black background for question bar */
    color: #FFD700; /* Gold text for questions */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: #1a1a1a;
}

.page-privacy-policy__faq-title {
    margin: 0;
    color: inherit;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    transform: rotate(45deg); /* Rotate for minus sign effect */
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer content */
    color: #ffffff;
}

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

.page-privacy-policy__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-privacy-policy__main-heading {
        font-size: 2.2em;
    }
    .page-privacy-policy__section-heading {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-section-heading {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-privacy-policy__main-heading {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        padding: 40px 0;
    }
    .page-privacy-policy__section-heading {
        font-size: 1.5em;
    }
    .page-privacy-policy__sub-section-heading {
        font-size: 1.2em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__faq-question {
        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 {
        margin-left: 0;
        margin-right: 0;
    }
    .page-privacy-policy__container {
        padding: 0 15px;
    }

    /* Mobile button responsiveness */
    .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;
    }
    .page-privacy-policy__hero-section .page-privacy-policy__container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-heading {
        font-size: 1.5em;
    }
    .page-privacy-policy__faq-question {
        padding: 15px 20px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 10px 20px 20px 20px;
    }
}