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

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: #0a0a0a; /* Ensure hero section has a background */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-privacy-policy__hero-description {
    font-size: 1.1em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-privacy-policy__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-privacy-policy__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-privacy-policy__btn-primary:hover {
    background-color: #1a8cc7;
}

.page-privacy-policy__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #26A9E0;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

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

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff; /* Light background for content */
    color: #333333; /* Dark text for light background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__container {
    max-width: 960px;
    margin: 0 auto;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-privacy-policy__highlight {
    font-weight: bold;
    color: #26A9E0;
}

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

.page-privacy-policy__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #26A9E0;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-privacy-policy__list-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

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

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

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

.page-privacy-policy__contact-link {
    color: #26A9E0;
    text-decoration: underline;
}

.page-privacy-policy__contact-link:hover {
    color: #1a8cc7;
}

/* Ensure all links within content are styled correctly */
.page-privacy-policy__content-area a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-privacy-policy__content-area a:hover {
    color: #1a8cc7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header spacing */
    }

    .page-privacy-policy__hero-title {
        font-size: 2em;
    }

    .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%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
    }

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

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

    .page-privacy-policy__list-title {
        font-size: 1.2em;
    }

    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 20px auto;
    }

    .page-privacy-policy__list-item,
    .page-privacy-policy__contact-item {
        font-size: 1em;
    }
}