/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css var(--dark-bg-1) */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--header-offset, 120px) 0 80px; /* Use header offset here if shared doesn't set body padding-top */
    background-color: #1a1a1a; /* Dark background for hero */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-content {
    flex: 1;
    padding: 0 40px;
    z-index: 1;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #26A9E0; /* Primary brand color for title */
    font-weight: bold;
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-privacy-policy__hero-buttons {
    display: flex;
    gap: 20px;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

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

.page-privacy-policy__btn-primary:hover {
    background-color: #1e87b7; /* Slightly darker */
    border-color: #1e87b7;
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: #26A9E0; /* Primary brand color */
    border: 2px solid #26A9E0;
}

.page-privacy-policy__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-privacy-policy__hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
    z-index: 1;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 60px 0;
    color: #333333; /* Dark text for light background cards/sections */
    background-color: #f8f8f8; /* Light background for content area */
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #26A9E0; /* Primary brand color */
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__section-title--light {
    color: #ffffff; /* White text for dark backgrounds */
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333333;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-privacy-policy__list-item strong {
    color: #26A9E0; /* Highlight important terms */
}

.page-privacy-policy__image-content-container {
    margin: 40px 0;
    text-align: center;
}

.page-privacy-policy__content-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensures it takes up full width and centers */
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__image-caption {
    font-style: italic;
    color: #555555;
    font-size: 0.95em;
}

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

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

.page-privacy-policy__contact-item a {
    color: #26A9E0;
    text-decoration: none;
}

.page-privacy-policy__contact-item a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background for FAQ */
    color: #ffffff;
}

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

.page-privacy-policy__faq-item {
    background-color: #2a2a2a; /* Slightly lighter dark background for items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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