/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-privacy-policy__hero-section {
    background-color: #000000; /* Main brand color for hero background */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

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

.page-privacy-policy__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    color: #f0f0f0;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000; /* Dark text for bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: 2px solid #FCBC45;
}

.page-privacy-policy__cta-button:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

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

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

.page-privacy-policy__link {
    color: #000000; /* Main brand color for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    color: #FCBC45; /* Highlight color on hover */
}

.page-privacy-policy__related-links {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

.page-privacy-policy__related-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 40px;
}

.page-privacy-policy__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-privacy-policy__link-card {
    background-color: #000000; /* Main brand color for card background */
    color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__link-card:hover {
    transform: translateY(-5px);
    background-color: #333333; /* Slightly lighter black on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__main-title {
        font-size: 2em;
    }
    .page-privacy-policy__intro-text,
    .page-privacy-policy__paragraph {
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__related-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__links-grid {
        grid-template-columns: 1fr;
    }
    /* Mobile content area images must not overflow */
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all content area images are at least 200px wide for content */
.page-privacy-policy__content-area img {
    min-width: 200px;
    min-height: 200px;
}

/* Specific rule to prevent contradiction with HTML width/height attributes if they are larger than 200px */
.page-privacy-policy__image[width][height] {
    width: auto; /* Allow CSS max-width to control */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
}

/* Prevent any filter effects on images */
.page-privacy-policy img {
    filter: none !important;
}