.page-privacy-policy {
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Main content background from body */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Minimum height for hero section */
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Darken image slightly for text readability, but not changing color */
}

.page-privacy-policy__hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.page-privacy-policy__hero-title {
    font-size: 3.5rem;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-privacy-policy__button--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #8B0000; /* Deep red text for contrast */
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-privacy-policy__button--large {
    padding: 18px 35px;
    font-size: 1.3rem;
    background-color: #8B0000; /* Deep red for prominent CTA */
    color: #FFD700; /* Gold text for contrast */
    border: 2px solid #8B0000;
}

.page-privacy-policy__button--large:hover {
    background-color: #a00000;
    transform: translateY(-3px);
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-privacy-policy__section {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for section background */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section-title {
    font-size: 2rem;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0;
}

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

.page-privacy-policy__list-item {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #e0e0e0;
}

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

.page-privacy-policy__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 800px; /* Ensure images don't stretch too wide */
}

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

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

.page-privacy-policy__contact-item strong {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }

    .page-privacy-policy__hero-title {
        font-size: 2.5rem;
    }

    .page-privacy-policy__hero-description {
        font-size: 1.1rem;
    }

    .page-privacy-policy__button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-privacy-policy__button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .page-privacy-policy__content-area {
        padding: 30px 15px;
    }

    .page-privacy-policy__section {
        padding: 20px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.7rem;
    }

    .page-privacy-policy__sub-section-title {
        font-size: 1.3rem;
    }

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

    /* Ensure images are responsive and don't overflow */
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
    }

    /* Mobile content area images must not be smaller than 200px. This rule ensures they are responsive but don't shrink too much. */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width for content images */
        min-height: 200px; /* Enforce minimum height for content images */
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 2rem;
    }

    .page-privacy-policy__hero-description {
        font-size: 1rem;
    }

    .page-privacy-policy__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-privacy-policy__button--large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-privacy-policy__section-title {
        font-size: 1.5rem;
    }

    .page-privacy-policy__sub-section-title {
        font-size: 1.2rem;
    }
}