/* 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(--black-color) */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #000000; /* Dark background for hero area */
}

.page-privacy-policy__hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.page-privacy-policy__main-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure H1 doesn't cause overflow */
}

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

.page-privacy-policy__hero-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.page-privacy-policy__hero-button:hover {
    background-color: #1a8cc4;
    border-color: #ffffff;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    margin-top: 40px; /* Space between content and image */
    text-align: center;
}

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

/* Content Sections */
.page-privacy-policy__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__content-section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
    color: #f0f0f0;
}

.page-privacy-policy__section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 30px;
    text-align: center;
}

.page-privacy-policy__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.page-privacy-policy__list-item strong {
    color: #ffffff;
}

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

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

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

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

.page-privacy-policy__contact-item a:hover {
    color: #1a8cc4;
    text-decoration: underline;
}

.page-privacy-policy__contact-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.page-privacy-policy__contact-button:hover {
    background-color: #1a8cc4;
    border-color: #ffffff;
}

/* General button styles for consistency */
.page-privacy-policy__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid transparent;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.page-privacy-policy__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #ffffff;
}

/* Ensure all links within main content are styled for dark background */
.page-privacy-policy a {
    color: #26A9E0; /* Brand color for links */
    text-decoration: none;
}

.page-privacy-policy a:hover {
    text-decoration: underline;
    color: #1a8cc4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8rem;
    }
    .page-privacy-policy__section-title {
        font-size: 2.2rem;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6rem;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-privacy-policy__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
        padding-bottom: 20px;
    }

    .page-privacy-policy__hero-content {
        padding: 40px 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .page-privacy-policy__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-privacy-policy__hero-button {
        padding: 12px 25px;
        font-size: 0.95rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-privacy-policy__hero-image-wrapper {
        margin-top: 20px;
    }

    /* Content Sections */
    .page-privacy-policy__content-section {
        padding: 30px 0;
    }

    .page-privacy-policy__container {
        padding: 0 15px; /* Add padding to container on mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__contact-item {
        font-size: 0.95rem;
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    /* Universal Image Adaptation */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Button Adaptation */
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__contact-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Button containers for multiple buttons (not present here, but good practice) */
    .page-privacy-policy__button-group {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Space between stacked buttons */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}