/* style/privacy-policy.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #121212;
    --bg-light-card: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
}

.page-privacy-policy {
    color: var(--text-light); /* Body background is dark #121212, so text should be light */
    background-color: var(--bg-dark);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-privacy-policy__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-privacy-policy__hero-title {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-privacy-policy__hero-button,
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__hero-button:hover,
.page-privacy-policy__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-privacy-policy__container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
    font-size: 1.8em;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-privacy-policy__list-item {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.page-privacy-policy__list-item strong {
    color: var(--primary-color);
}

.page-privacy-policy__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-privacy-policy__cta-button--contact {
    margin-top: 30px;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
    color: var(--primary-color);
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 30px;
}

.page-privacy-policy__faq-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

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

.page-privacy-policy__faq-title {
    margin: 0;
    color: var(--text-light);
    font-size: 1.1em;
}

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

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1.1em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-privacy-policy__hero-section {
        height: 400px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
    }
    .page-privacy-policy__hero-button,
    .page-privacy-policy__cta-button {
        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__hero-button:not(:last-child),
    .page-privacy-policy__cta-button:not(:last-child) {
        margin-bottom: 15px;
    }
    .page-privacy-policy__content-area {
        padding: 20px 15px;
    }
    .page-privacy-policy__container {
        padding: 20px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: unset;
        min-height: unset;
    }
    .page-privacy-policy__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-privacy-policy__faq-title {
        font-size: 1em;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 15px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__hero-description {
        font-size: 0.9em;
    }
    .page-privacy-policy__hero-section {
        height: 350px;
    }
}