.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark text for readability on light backgrounds */
    background-color: #f8f9fa; /* Light background */
}

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff; /* White text on dark gradient background */
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Subtle overlay for text readability */
    z-index: 1;
}

.page-privacy-policy__hero .page-privacy-policy__container {
    position: relative;
    z-index: 2;
}

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-privacy-policy__section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.page-privacy-policy__section--alt {
    background-color: #f0f4f7; /* Slightly different background for alternating sections */
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #007bff; /* Primary blue for section titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-privacy-policy ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.page-privacy-policy strong {
    color: #007bff;
}

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

.page-privacy-policy__contact {
    text-align: center;
    padding: 60px 0;
    background-color: #e9f7ef; /* Light green background for contact section */
}

.page-privacy-policy__contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #28a745; /* Secondary green for CTA button */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 25px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2em;
    }

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

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

    .page-privacy-policy p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero {
        padding: 40px 0;
    }
    .page-privacy-policy__title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.3em;
    }
    .page-privacy-policy__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}