/* style/privacy-policy.css */

:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --background-dark: #121212;
    --background-light: #f8f9fa;
    --card-background-dark-mode: rgba(255, 255, 255, 0.1);
    --card-background-light-mode: #ffffff;
    --border-color: #e0e0e0;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark-bg); /* Default text color for dark body background */
    background-color: var(--background-dark); /* Inherits from shared.css body */
}

/* Fixed Header Spacing */
.page-privacy-policy__intro-section {
    padding-top: 120px; /* Adjust based on actual fixed header height */
}

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

.page-privacy-policy__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-color-dark-bg);
}

.page-privacy-policy__light-bg {
    background-color: var(--background-light);
    color: var(--text-color-light-bg);
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    padding-top: 40px;
}

.page-privacy-policy__description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-dark-bg);
}

.page-privacy-policy__hero-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 60px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.page-privacy-policy__content-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    padding: 0;
}

.page-privacy-policy__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__image-inline {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__contact-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-privacy-policy__contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__intro-section {
        padding-top: 100px !important; /* Mobile fixed header adjustment */
    }
    .page-privacy-policy__container {
        padding: 0 15px;
    }
    .page-privacy-policy__main-title {
        font-size: 2em;
        padding-top: 20px;
    }
    .page-privacy-policy__description {
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__content-section p,
    .page-privacy-policy__list li {
        font-size: 0.95em;
    }
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__contact-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__content-section p,
    .page-privacy-policy__list li {
        font-size: 0.9em;
    }
}