.page-privacy-policy {
    color: #ffffff; /* Dark body background #333, so use light text */
    background-color: #333; /* Ensure content background is consistent with body */
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.8), rgba(255, 215, 0, 0.3)), url('[GALLERY:hero_bg:1920x1080:cybersecurity,data_protection,privacy,gold_accents]') center/cover no-repeat;
    background-blend-mode: multiply;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

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

.page-privacy-policy__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-privacy-policy__button--primary {
    background-color: #FFD700;
    color: #000080;
}

.page-privacy-policy__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(0, 0, 128, 0.2); /* Slightly transparent dark blue */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: -40px; /* Overlap with hero section */
    position: relative;
    z-index: 2;
}

.page-privacy-policy__section {
    margin-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.3); /* Darker background for sections */
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #e6c200;
}

.page-privacy-policy__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #000080;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__call-to-action-text {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-privacy-policy__button--cta {
    background-color: #FFD700;
    color: #000080;
    padding: 15px 35px;
    font-size: 1.3em;
    border-radius: 10px;
}

.page-privacy-policy__button--cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 2em;
    }

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

    .page-privacy-policy__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__button {
        width: 80%;
        max-width: 300px;
    }

    .page-privacy-policy__content-area {
        padding: 30px 15px;
        margin-top: -30px;
    }

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

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

    .page-privacy-policy__paragraph, .page-privacy-policy__list-item {
        font-size: 0.95em;
    }

    .page-privacy-policy__call-to-action-text {
        font-size: 1.4em;
    }

    .page-privacy-policy__button--cta {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

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

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

    .page-privacy-policy__button {
        width: 90%;
    }
}