.page-privacy-policy {
    background-color: #FFFFFF;
    color: #333333; /* Default text color for contrast on white background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px; /* Space below hero content */
    background-color: #017439; /* Main brand color for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.page-privacy-policy__hero-content {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
    color: #FFFFFF;
}

.page-privacy-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
}

.page-privacy-policy__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-privacy-policy__button--download {
    background-color: #C30808; /* Color for Register/Login buttons */
    color: #FFFF00; /* Font color for Register/Login buttons */
}

.page-privacy-policy__button--download:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

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

.page-privacy-policy__heading-2 {
    color: #017439; /* Main brand color for section headings */
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-privacy-policy__heading-3 {
    color: #017439;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.7;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1em;
}

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

.page-privacy-policy__link:hover {
    color: #004d29;
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Ensure images don't exceed content width */
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        padding: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-privacy-policy__button {
        padding: 10px 20px;
        font-size: 1em;
    }

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

    .page-privacy-policy__heading-2 {
        font-size: 1.8em;
        margin-top: 30px;
    }

    .page-privacy-policy__heading-3 {
        font-size: 1.4em;
    }

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

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

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

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

    .page-privacy-policy__heading-2 {
        font-size: 1.5em;
    }

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

/* Ensure content area images do not cause horizontal scroll on mobile */
@media (max-width: 768px) {
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}