.page-privacy-policy {
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #000000; /* Black background for hero */
    color: #ffffff; /* White text on black background */
    text-align: center;
    padding-bottom: 40px;
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-privacy-policy__hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #000000; /* Black for section titles */
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    font-size: 1em;
}

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

.page-privacy-policy__link:hover {
    text-decoration: underline;
    color: #b39700; /* Darker gold on hover */
}

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
}

.page-privacy-policy__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text on gold */
    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;
    white-space: nowrap;
}

.page-privacy-policy__cta-button:hover {
    background-color: #b39700; /* Darker gold on hover */
    color: #ffffff; /* White text on darker gold */
}

.page-privacy-policy__cta-button--secondary {
    background-color: #000000; /* Black button */
    color: #FFD700; /* Gold text on black */
    border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
    background-color: #333333; /* Dark gray on hover */
    color: #FFD700;
}

.page-privacy-policy__promotion-section {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-privacy-policy__promotion-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-privacy-policy__promotion-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
}

.page-privacy-policy__promotion-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-privacy-policy__promotion-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text on gold */
    padding: 18px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.page-privacy-policy__promotion-button:hover {
    background-color: #b39700; /* Darker gold on hover */
    color: #ffffff;
}

.page-privacy-policy__promotion-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
}

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

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

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

    .page-privacy-policy__cta-button,
    .page-privacy-policy__promotion-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-privacy-policy__button-group {
        flex-direction: column;
        align-items: center;
    }

    /* Ensure images are responsive and do not overflow */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image-content,
    .page-privacy-policy__promotion-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__hero-description,
    .page-privacy-policy__paragraph,
    .page-privacy-policy__promotion-description {
        font-size: 0.95em;
    }

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