.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, as body padding-top is handled by shared */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    background-color: #2A1212; /* Card B G */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 20px auto 0;
    padding: 0 20px;
    text-align: center;
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.page-privacy-policy__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast on bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

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

.page-privacy-policy__content-area {
    background-color: #140C0C; /* Background */
    border-radius: 10px;
}

.page-privacy-policy__heading-h2 {
    font-size: 2.5em;
    color: #F3C54D; /* Gold */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #6A1E1E; /* Border */
    padding-bottom: 10px;
}

.page-privacy-policy__heading-h3 {
    font-size: 1.8em;
    color: #E53030; /* Auxiliary Color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #FFF1E8; /* Text Main */
}

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

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

.page-privacy-policy__text-link {
    color: #FFB04A; /* Brighter color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__text-link:hover {
    color: #F3C54D; /* Gold */
}

.page-privacy-policy__highlight {
    color: #F3C54D; /* Gold */
    font-weight: bold;
}

.page-privacy-policy__image-inline {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__faq-item {
    background-color: #2A1212; /* Card B G */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #F3C54D; /* Gold */
    background-color: #C61F1F; /* Main Color */
    list-style: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Safari */
    -khtml-user-select: none;    /* Konqueror HTML */
    -moz-user-select: none;      /* Old versions of Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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

.page-privacy-policy__faq-question::marker {
    display: none;
}

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
    color: #FFF1E8; /* Text Main */
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #FFF1E8; /* Text Main */
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: #FFF1E8; /* Text Main */
    background-color: #2A1212; /* Card B G */
}

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

    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-privacy-policy__hero-image-wrapper {
        height: 250px;
    }

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

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

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

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

    .page-privacy-policy__section {
        padding: 30px 15px;
    }

    .page-privacy-policy__heading-h2 {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

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

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list li {
        font-size: 1em;
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    /* Universal image responsive for mobile */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Container for images and other content */
    .page-privacy-policy__section,
    .page-privacy-policy__content-area,
    .page-privacy-policy__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-privacy-policy__image-inline {
        margin: 20px auto;
    }

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

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