:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --page-bg: #B71C1C;
    --text-main: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red: #7A0E0E;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Light text on dark background */
    background-color: var(--page-bg); /* Dark background */
    padding-bottom: 50px;
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Rely on body for header offset */
    background-color: var(--deep-red); /* Slightly different dark background for hero */
}

.page-privacy-policy__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-privacy-policy__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
}

.page-privacy-policy__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    color: var(--gold-color); /* Gold color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-privacy-policy__intro-text {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #333333; /* Dark text on gold button for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--border-color);
}

.page-privacy-policy__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: var(--card-bg); /* Darker background for content area */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-privacy-policy__section-title {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--gold-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.page-privacy-policy__subsection-title {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--primary-color); /* Main brand color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-main);
}

.page-privacy-policy ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-privacy-policy ul li {
    margin-bottom: 8px;
    font-size: 17px;
}

.page-privacy-policy__link {
    color: var(--gold-color); /* Gold for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: var(--glow-color);
}

.page-privacy-policy__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-privacy-policy__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--deep-red);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-section p {
    font-size: 20px;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__hero-image img {
        border-radius: 4px;
    }

    .page-privacy-policy__main-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__intro-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

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

    .page-privacy-policy__content-area {
        margin: 20px auto;
        padding: 20px 15px;
    }

    .page-privacy-policy__section-title {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__subsection-title {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-privacy-policy p,
    .page-privacy-policy ul li {
        font-size: 15px;
    }

    .page-privacy-policy__image-wrapper img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__cta-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /* Ensure containers for images/buttons are properly constrained */
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__image-wrapper,
    .page-privacy-policy__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Contrast Fixes if needed */
.page-privacy-policy__contrast-fix {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
}

.page-privacy-policy__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
}