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

.page-privacy-policy__hero-section {
    background-color: #000000; /* Primary brand color for hero background */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.page-privacy-policy__hero-cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__hero-cta-button:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

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

.page-privacy-policy__text-block {
    margin-bottom: 40px;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #000000; /* Dark text for titles on light background */
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-privacy-policy__text-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #333333;
}

.page-privacy-policy__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
}

.page-privacy-policy__list li {
    margin-bottom: 10px;
    color: #333333;
}

.page-privacy-policy__list li strong {
    color: #000000;
}

.page-privacy-policy__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__cta-section {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
}

.page-privacy-policy__cta-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-privacy-policy__cta-button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
}

.page-privacy-policy__cta-button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-privacy-policy__text-block a {
    color: #FCBC45; /* Highlight links with accent color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__text-block a:hover {
    color: #e0a53b;
    text-decoration: underline;
}

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

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

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

    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__cta-button {
        display: block;
        width: 80%;
        margin: 15px auto;
    }

    /* Prevent images from overflowing on mobile */
    .page-privacy-policy__content-image {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-privacy-policy {
        max-width: 100%;
        overflow-x: hidden;
    }
}