.page-privacy-policy {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    background-color: #2F6BFF; /* Primary color as a backdrop */
    border-radius: 8px;
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.page-privacy-policy__hero-content {
    padding: 30px 20px;
    text-align: center;
    color: #FFFFFF; /* White text on dark background */
    background: linear-gradient(180deg, rgba(47, 107, 255, 0.8) 0%, rgba(111, 163, 255, 0.8) 100%); /* Blue gradient overlay for text readability */
}

.page-privacy-policy__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    /* No fixed font-size for H1, relying on clamp if needed, otherwise browser default + font-weight */
}

@media (min-width: 769px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem); /* Example clamp */
    }
}
@media (max-width: 768px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

.page-privacy-policy__subtitle {
    font-size: 1.1em;
    color: #E0EFFF;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slight hover effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 20px 0 40px;
}

.page-privacy-policy__section-title {
    color: #2F6BFF; /* Primary color */
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
}

.page-privacy-policy__list-item strong {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-privacy-policy__content-image {
    display: block;
    width: 100%; /* Ensure it takes full width of its container */
    max-width: 800px; /* Max width for content images */
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* No filter allowed */
}

.page-privacy-policy__paragraph a,
.page-privacy-policy__contact-link {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__paragraph a:hover,
.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__container {
        padding: 15px;
    }

    .page-privacy-policy__hero-content {
        padding: 20px 15px;
    }

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

    .page-privacy-policy__hero-image,
    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure content images are not too small on mobile */
    .page-privacy-policy__content-section img {
        min-width: 200px; /* Enforce min size for content images */
        min-height: 200px;
    }
}

/* Image size validation for content images (all images within .page-privacy-policy, not shared header/footer) */
.page-privacy-policy img {
    /* This rule applies to all images within the main content area to prevent small icons */
    min-width: 200px;
    min-height: 200px;
}
/* Override for responsive behavior, but ensuring min-size is met */
@media (max-width: 768px) {
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        /* Re-assert min-size for smaller screens if necessary, though max-width 100% will usually make it larger */
        min-width: 200px; 
        min-height: 200px;
    }
}