.page-privacy-policy {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for main content below header */
}

.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    max-width: 800px;
}

.page-privacy-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF3E6;
    margin-bottom: 20px;
    text-align: center;
    /* No fixed font-size for H1, relying on responsive scaling and other properties */
}

.page-privacy-policy__description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__section {
    padding: 40px 20px;
    border-bottom: 1px solid #17191F;
}

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

.page-privacy-policy__section--alt-bg {
    background-color: #17191F;
}

.page-privacy-policy__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFA53A;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

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

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

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

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

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

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

.page-privacy-policy__contact-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-privacy-policy__section--contact {
    text-align: center;
    padding-bottom: 60px;
}

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

    .page-privacy-policy__main-title {
        font-size: 2em; /* Adjusted for smaller screens, but still relative */
    }

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

    .page-privacy-policy__section {
        padding: 30px 15px;
    }

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

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

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

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

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

    .page-privacy-policy__contact-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}