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

.page-privacy-policy__hero-section {
    background-color: #000000; /* Dark background for hero section */
    color: #ffffff; /* Light text for dark hero background */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.page-privacy-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45; /* Gold accent for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 1;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff; /* White background for content */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__article {
    padding: 20px 0;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__link {
    color: #FCBC45; /* Gold color for links */
    text-decoration: none;
    font-weight: bold;
}

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

.page-privacy-policy__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #cccccc;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    min-width: 200px; /* Ensure buttons are not too small */
}

.page-privacy-policy__button--register {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text */
    border: 2px solid #000000;
}

.page-privacy-policy__button--register:hover {
    background-color: #333333;
    color: #FCBC45;
}

.page-privacy-policy__button--login {
    background-color: #FCBC45; /* Gold background */
    color: #000000; /* Black text for contrast */
    border: 2px solid #FCBC45;
}

.page-privacy-policy__button--login:hover {
    background-color: #e0a53b;
    color: #ffffff;
}

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

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

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

    .page-privacy-policy__hero-section {
        padding: 40px 15px;
    }

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

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

    .page-privacy-policy__button {
        display: block;
        width: calc(100% - 20px); /* Adjust for margin */
        margin-left: 10px;
        margin-right: 10px;
    }
}