/* style/privacy-policy.css */

/* Reset & Base Styles */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: #000000; /* Ensure consistency with body background */
}

.page-privacy-policy__link-text {
    color: #FFD700; /* Brand gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link-text:hover {
    color: #ffe066;
    text-decoration: underline;
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px; /* Fixed navigation bar spacing */
    margin-top: 0;
    overflow: hidden;
    background-color: #0d0d0d; /* Dark background for hero area */
}

.page-privacy-policy__hero-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.page-privacy-policy__hero-image {
    width: 100%;
    margin: 0;
}

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

/* Content Wrapper */
.page-privacy-policy__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 40px; /* Ensure content is below fixed header, adjusted for hero section */
    background-color: #000000; /* Dark background for main content */
}

.page-privacy-policy__container {
    max-width: 900px;
    margin: 0 auto;
}

/* Headings */
.page-privacy-policy__main-title {
    font-size: 3em;
    color: #FFD700; /* Gold color for main title */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold color for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-privacy-policy__sub-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold color for sub-titles */
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraphs and Lists */
.page-privacy-policy__intro-text,
.page-privacy-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f0f0f0; /* Light text */
}

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

.page-privacy-policy__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #f0f0f0; /* Light text */
}

.page-privacy-policy__list-item::before {
    content: '• ';
    color: #FFD700; /* Gold bullet points */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Image Styling */
.page-privacy-policy__image-wrapper {
    margin: 30px 0;
    text-align: center;
    border: 2px solid #FFD700; /* Gold border for images */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Call to Action (CTA) Section */
.page-privacy-policy__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1a1a1a; /* Darker background for CTA */
    border-radius: 10px;
    border: 1px solid #8B0000; /* Red border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-text {
    font-size: 1.3em;
    color: #f0f0f0; /* Light text */
    margin-bottom: 25px;
}

.page-privacy-policy__btn {
    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, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1a1a1a; /* Dark text for gold button */
}

.page-privacy-policy__btn--primary:hover {
    background-color: #ffe066;
    transform: translateY(-2px);
}

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

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #1a1a1a; /* Dark background for FAQ item */
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #222222; /* Slightly lighter dark for question */
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

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

.page-privacy-policy__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    color: #FFD700; /* Gold for FAQ question */
    pointer-events: none;
}

.page-privacy-policy__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #FFD700;
    border-radius: 50%;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    color: #ffffff;
    background-color: #FFD700;
    transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #f0f0f0; /* Light text for answer */
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px !important;
    opacity: 1;
    background-color: #0d0d0d; /* Slightly lighter dark for answer background */
    border-radius: 0 0 5px 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
    }
    .page-privacy-policy__intro-text,
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-privacy-policy__hero-section {
        padding-top: 10px; /* Mobile fixed navigation bar spacing */
    }
    .page-privacy-policy__content-wrapper {
        padding: 20px 15px;
        padding-top: 20px; /* Adjusted for mobile hero section */
    }
    .page-privacy-policy__container,
    .page-privacy-policy__cta-section,
    .page-privacy-policy__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-privacy-policy__main-title {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 1em;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-privacy-policy__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 15px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 15px !important;
    }
    .page-privacy-policy__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}