/* 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: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Dark background for hero */
}

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

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for title */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-privacy-policy__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.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;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%; /* Ensure buttons are responsive */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-privacy-policy__btn-primary {
    background-color: #C80000; /* Main brand color */
    color: #ffffff;
    border: 2px solid #C80000;
}

.page-privacy-policy__btn-primary:hover {
    background-color: #FFD700; /* Auxiliary brand color on hover */
    color: #1a1a1a;
    border-color: #FFD700;
}

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

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

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #212121; /* Slightly lighter dark background for content sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__dark-section {
    background-color: #1a1a1a; /* Darker background for contrast */
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for main section titles */
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #C80000;
}

.page-privacy-policy__sub-section-title {
    font-size: 1.6em;
    color: #C80000; /* Main brand color for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-privacy-policy__paragraph a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover {
    color: #C80000;
    text-decoration: underline;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-privacy-policy__list-item strong {
    color: #FFD700; /* Gold for strong text in list items */
}

.page-privacy-policy__list-item a {
    color: #FFD700;
    text-decoration: none;
}

.page-privacy-policy__list-item a:hover {
    color: #C80000;
    text-decoration: underline;
}

.page-privacy-policy__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* FAQ Section Styles */
.page-privacy-policy__faq-section {
    background-color: #212121;
}

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

.page-privacy-policy__faq-item {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #C80000; /* Main brand color for question background */
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: #9a0000; /* Darker red on hover */
}

.page-privacy-policy__faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1em; /* Adjust to fit within the box */
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 15px;
    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;
    background-color: #2c2c2c; /* Slightly lighter dark for answer background */
    color: #f0f0f0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important; /* Sufficient height for content */
    padding: 20px;
}

.page-privacy-policy__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

.page-privacy-policy__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

.page-privacy-policy__faq-answer a:hover {
    color: #C80000;
    text-decoration: underline;
}

/* Contact Section Specifics */
.page-privacy-policy__contact-section {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }
    .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.4em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }
}

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

    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
    }
    .page-privacy-policy__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-privacy-policy__content-area,
    .page-privacy-policy__faq-list {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.2em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__list {
        margin-left: 25px;
    }

    /* Images responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__content-area img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    /* Ensure video elements (if any) are also responsive, although none are added to this page */
    .page-privacy-policy video,
    .page-privacy-policy__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    .page-privacy-policy__video-section,
    .page-privacy-policy__video-container,
    .page-privacy-policy__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }

    /* Fixed header offset for video section in mobile, if it were present */
    .page-privacy-policy__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}