/* style/privacy-policy.css */
.page-privacy-policy {
    color: #ffffff; /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__content-padding {
    /* Fixed navigation bar spacing requirement */
    padding-top: 10px; /* Desktop and Mobile */
}

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

.page-privacy-policy__hero-section {
    background: linear-gradient(135deg, #1A202C, #0d0d0d); /* Dark gradient background */
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.page-privacy-policy__main-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-align: center;
}

.page-privacy-policy__intro-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #f0f0f0; /* Slightly lighter white for intro text */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__image-wrapper {
    margin-top: 30px;
    text-align: center;
}

.page-privacy-policy__hero-image,
.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto; /* Center images */
}

.page-privacy-policy__image-wrapper--inline {
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy__section {
    padding: 60px 0;
    background: #1A202C; /* Auxiliary dark background */
}

.page-privacy-policy__dark-section {
    background: #0d0d0d; /* Even darker background for contrast */
}

.page-privacy-policy__section-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
}

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

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

.page-privacy-policy__list-item {
    background: rgba(255, 255, 255, 0.08); /* Slightly visible background for list items */
    border-left: 4px solid #FFD700; /* Gold accent */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__list-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #FFD700; /* Gold for list titles */
}

.page-privacy-policy__list-item .page-privacy-policy__paragraph {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 0;
}

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

.page-privacy-policy__link:hover {
    color: #fff;
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-privacy-policy__contact-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-privacy-policy__contact-item .page-privacy-policy__paragraph {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* FAQ section styles */
.page-privacy-policy__faq-section {
    padding: 60px 0;
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1A202C; /* Dark background for question */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    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: #2a303c; /* Slightly lighter on hover */
    border-color: #FFD700; /* Gold border on hover */
}

.page-privacy-policy__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff; /* White text for question */
    pointer-events: none;
}

.page-privacy-policy__faq-toggle {
    font-size: 28px; /* Larger toggle icon */
    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: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    color: #ffffff; /* White when active */
    transform: rotate(45deg); /* Rotate for '−' effect */
}

.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 25px;
    opacity: 0;
    background: #0d0d0d; /* Dark background for answer */
    border-radius: 0 0 8px 8px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain any content */
    padding: 20px 25px !important;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
}

.page-privacy-policy__faq-answer .page-privacy-policy__paragraph {
    color: #e0e0e0; /* Lighter white for answer text */
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 32px;
    }
    .page-privacy-policy__section-title {
        font-size: 26px;
    }
    .page-privacy-policy__list-title {
        font-size: 20px;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 17px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 26px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__content-padding {
        padding-top: 10px !important; /* Mobile fixed navigation bar spacing */
    }
    .page-privacy-policy__container {
        padding: 0 15px !important;
    }
    .page-privacy-policy__main-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__intro-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-privacy-policy__section {
        padding: 40px 0;
    }
    .page-privacy-policy__section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .page-privacy-policy__paragraph {
        font-size: 15px;
    }
    .page-privacy-policy__list-item {
        padding: 18px 20px;
    }
    .page-privacy-policy__list-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .page-privacy-policy__list-item .page-privacy-policy__paragraph {
        font-size: 14px;
    }
    .page-privacy-policy__contact-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .page-privacy-policy__contact-item {
        padding: 20px;
    }
    .page-privacy-policy__contact-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__contact-item .page-privacy-policy__paragraph {
        font-size: 14px;
    }
    .page-privacy-policy__faq-question {
        padding: 15px 20px;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 16px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 24px;
        width: 26px;
        height: 26px;
        margin-left: 15px;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 20px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 18px 20px !important;
    }

    /* All images responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    /* All containers responsive, adjusted for padding */
    .page-privacy-policy__section,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__faq-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-privacy-policy__hero-section .page-privacy-policy__container,
    .page-privacy-policy__section .page-privacy-policy__container,
    .page-privacy-policy__faq-section .page-privacy-policy__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}