.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px; /* Small top padding, body handles header offset */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    height: auto;
    display: block;
}

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

.page-privacy-policy__hero-content {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

.page-privacy-policy__main-title {
    font-weight: bold;
    color: var(--custom-color-1776249996415);
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* No fixed font-size, relying on weight, line-height, etc. */
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--card-b-g);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__container {
    padding: 30px;
}

.page-privacy-policy__section-title {
    color: var(--custom-color-1776249996415);
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: var(--text-main);
}

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

.page-privacy-policy__list-item {
    margin-bottom: 8px;
    color: var(--text-main);
}

.page-privacy-policy__link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
}

.page-privacy-policy__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #F4F7FB; /* Use background color */
    border-radius: 8px;
    border: 1px solid var(--border);
}

.page-privacy-policy__cta-text {
    font-size: 1.3em;
    color: var(--custom-color-1776249996415);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        margin: 10px auto 20px auto;
        padding: 0 15px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
        margin-bottom: 10px;
    }

    .page-privacy-policy__intro-text {
        font-size: 1em;
    }

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

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

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

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-privacy-policy__cta-section {
        padding: 20px;
    }

    .page-privacy-policy__cta-text {
        font-size: 1.1em;
    }

    .page-privacy-policy__cta-button {
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-privacy-policy__section-title {
        font-size: 1.3em;
    }

    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}