.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
}

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

.page-privacy-policy__container--center {
    text-align: center;
}

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a335c 100%); /* Gradient based on main color */
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700; /* Accent border */
}

.page-privacy-policy__title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    color: #f5e6d0; /* Light text */
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section--alt {
    background-color: #1a2a47; /* Slightly lighter dark background for contrast */
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #FFD700; /* Accent color for headings */
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    line-height: 1.2;
}

.page-privacy-policy__heading--cta {
    font-size: 2.5em;
    border-left: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-privacy-policy p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0; /* Slightly darker light text for readability */
}

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

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

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

.page-privacy-policy__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__image--inline {
    float: right;
    margin: 10px 0 20px 30px;
    max-width: 300px;
}

.page-privacy-policy__section--cta {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-privacy-policy__section--cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f5e6d0;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 0 15px;
    min-width: 180px;
    text-align: center;
}

.page-privacy-policy__button--primary {
    background-color: #FFD700; /* Accent color for primary button */
    color: #0A192F; /* Dark text for light button */
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color for secondary button text */
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

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

    .page-privacy-policy__subtitle,
    .page-privacy-policy p,
    .page-privacy-policy__list li {
        font-size: 1em;
    }

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

    .page-privacy-policy__heading--cta {
        font-size: 2em;
    }

    .page-privacy-policy__button {
        font-size: 1em;
        padding: 12px 25px;
        margin: 10px 0;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .page-privacy-policy__image--inline {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero {
        padding: 60px 0;
    }

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

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

    .page-privacy-policy__heading--cta {
        font-size: 1.8em;
    }

    .page-privacy-policy__button {
        min-width: unset;
        width: 100%;
    }
}