/* style/resources-caxeng-user-privacy-policy-details.css */

:root {
    --page-primary-color: #FFD700; /* Gold */
    --page-secondary-color: #00BFFF; /* Deep Sky Blue */
    --page-text-dark: #2c3e50; /* Darker text for light backgrounds */
    --page-text-light: #ffffff; /* Light text for dark backgrounds */
    --page-bg-light: #f9f9f9;
    --page-bg-dark: #1a2a3a;
    --page-accent-dark: #b39700; /* Darker gold for accents */
    --page-accent-blue-dark: #0086b3; /* Darker blue for accents */
}

.page-resources-caxeng-user-privacy-policy-details {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-bg-light);
}

.page-resources-caxeng-user-privacy-policy-details__hero {
    background: linear-gradient(135deg, var(--page-secondary-color), var(--page-accent-blue-dark));
    padding: 80px 20px;
    text-align: center;
    color: var(--page-text-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-resources-caxeng-user-privacy-policy-details__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-resources-caxeng-user-privacy-policy-details__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-primary-color); /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-caxeng-user-privacy-policy-details__brand-link {
    color: var(--page-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-caxeng-user-privacy-policy-details__brand-link:hover {
    color: var(--page-text-light);
}

.page-resources-caxeng-user-privacy-policy-details__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: var(--page-text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-caxeng-user-privacy-policy-details__hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-caxeng-user-privacy-policy-details__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-caxeng-user-privacy-policy-details__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-caxeng-user-privacy-policy-details__section:last-of-type {
    border-bottom: none;
}

.page-resources-caxeng-user-privacy-policy-details__section-title {
    font-size: 2.5em;
    color: var(--page-secondary-color); /* Deep Sky Blue for main headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-caxeng-user-privacy-policy-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-primary-color);
    border-radius: 2px;
}

.page-resources-caxeng-user-privacy-policy-details__sub-section-title {
    font-size: 1.8em;
    color: var(--page-accent-dark); /* Darker gold for subheadings */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-resources-caxeng-user-privacy-policy-details p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-text-dark);
}

.page-resources-caxeng-user-privacy-policy-details ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-resources-caxeng-user-privacy-policy-details ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--page-text-dark);
}

.page-resources-caxeng-user-privacy-policy-details strong {
    color: var(--page-accent-dark);
}

.page-resources-caxeng-user-privacy-policy-details .highlight {
    color: var(--page-secondary-color);
    font-weight: bold;
}

.page-resources-caxeng-user-privacy-policy-details__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-resources-caxeng-user-privacy-policy-details__contact-link:hover {
    color: var(--page-accent-blue-dark);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-caxeng-user-privacy-policy-details__title {
        font-size: 2.5em;
    }

    .page-resources-caxeng-user-privacy-policy-details__subtitle {
        font-size: 1.2em;
    }

    .page-resources-caxeng-user-privacy-policy-details__section-title {
        font-size: 2em;
    }

    .page-resources-caxeng-user-privacy-policy-details__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-caxeng-user-privacy-policy-details p,
    .page-resources-caxeng-user-privacy-policy-details ul li {
        font-size: 1em;
    }

    .page-resources-caxeng-user-privacy-policy-details__hero {
        padding: 60px 15px;
        min-height: 300px;
    }

    .page-resources-caxeng-user-privacy-policy-details__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-caxeng-user-privacy-policy-details__title {
        font-size: 2em;
    }

    .page-resources-caxeng-user-privacy-policy-details__subtitle {
        font-size: 1em;
    }

    .page-resources-caxeng-user-privacy-policy-details__section-title {
        font-size: 1.8em;
    }

    .page-resources-caxeng-user-privacy-policy-details__sub-section-title {
        font-size: 1.3em;
    }

    .page-resources-caxeng-user-privacy-policy-details ul {
        margin-left: 15px;
    }
}