.page-privacy-policy {
    color: #ffffff; /* Light text for dark body background */
    background-color: #0D0D0D; /* Ensure consistency, though body background is from shared */
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px; /* Adjusted padding, assuming shared handles body padding-top */
    text-align: center;
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability, not changing color */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-privacy-policy__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-privacy-policy__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    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;
}

.page-privacy-policy__hero-button:hover {
    background-color: #e6c200;
    color: #000000;
}

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

.page-privacy-policy__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-privacy-policy__policy-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__sub-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-privacy-policy__list-item {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.page-privacy-policy__section-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-section {
    background-color: #1A1A1A;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 3em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1.2em;
    }
    .page-privacy-policy__section-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 15px 30px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1.1em;
    }
    .page-privacy-policy__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        padding: 30px 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }
    .page-privacy-policy__policy-section {
        padding: 20px;
    }
    .page-privacy-policy__cta-section {
        padding: 30px;
    }
    .page-privacy-policy__cta-title {
        font-size: 2em;
    }
    .page-privacy-policy__cta-description {
        font-size: 1.1em;
    }
    .page-privacy-policy__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-privacy-policy__content-area img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 2em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-description {
        font-size: 0.95em;
    }
}