/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #121212; /* Ensure consistency with body background */
    padding-bottom: 60px; /* Space above footer */
}

/* Header offset - applied to the first main content section if not applied to body by shared.css */
.page-privacy-policy__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Brand colors for hero background */
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-privacy-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-privacy-policy__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-privacy-policy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: none; /* No filter for image color */
}

/* Content area styles */
.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background for content sections */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B0000;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #8B0000;
    padding-left: 15px;
}

.page-privacy-policy__text-block {
    margin-bottom: 20px;
    color: #f0f0f0;
}

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

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

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

.page-privacy-policy__image-block {
    text-align: center;
    margin: 40px 0;
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    filter: none; /* No filter for image color */
}

.page-privacy-policy__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #cccccc;
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

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

.page-privacy-policy__contact-link {
    color: #FFD700;
    text-decoration: none;
}

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

/* Call to Action Section */
.page-privacy-policy__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #8B0000;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.page-privacy-policy__cta-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 0 10px 15px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-privacy-policy__btn-primary:hover {
    background-color: #e6c200;
    color: #6a0000;
    border-color: #e6c200;
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-privacy-policy__btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    cursor: pointer;
    background-color: #3a3a3a;
    transition: background-color 0.3s ease;
}

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

.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);
}

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

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 25px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__intro-text {
        font-size: 1.1em;
    }
    .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 {
        min-height: 300px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-privacy-policy__hero-content {
        padding: 0 15px;
    }
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        padding: 30px 15px;
        margin-top: -40px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__image-block {
        margin: 30px 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        width: calc(100% - 30px) !important;
        display: block !important;
        margin: 0 auto 15px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__cta-section {
        padding: 30px 15px;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__cta-description {
        font-size: 0.95em;
    }

    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__faq-section {
        padding: 30px 15px;
        margin: 40px auto;
    }
    .page-privacy-policy__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 20px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 10px 20px 20px;
    }
}