.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #1F2D3D);
    background-color: var(--background, #F4F7FB);
}

.page-privacy-policy__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
    padding-bottom: 60px;
    color: #ffffff;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative; /* Ensure content is above any potential background elements */
    z-index: 2;
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    width: auto;
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-privacy-policy__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-privacy-policy__btn-secondary:hover {
    background: #f0f0f0;
    color: #2F6BFF;
    transform: translateY(-2px);
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--card-bg, #FFFFFF);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: -40px; /* Pulls up into the hero section */
    position: relative;
    z-index: 1;
    color: var(--text-main, #1F2D3D);
}

.page-privacy-policy__light-bg {
    background-color: var(--card-bg, #FFFFFF);
    color: var(--text-main, #1F2D3D);
}

.page-privacy-policy__dark-bg {
    background-color: var(--main-color, #2F6BFF);
    color: #ffffff;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-main, #1F2D3D);
    margin-top: 40px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-privacy-policy__section-title--light {
    color: #ffffff;
}

.page-privacy-policy__sub-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-main, #1F2D3D);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-privacy-policy__list li {
    margin-bottom: 10px;
    color: var(--text-main, #1F2D3D);
}

.page-privacy-policy__image-block {
    margin: 40px 0;
    text-align: center;
}

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

.page-privacy-policy__contact-link {
    color: var(--main-color, #2F6BFF);
    text-decoration: none;
    font-weight: 600;
}

.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
}

.page-privacy-policy__faq-section {
    padding: 80px 20px;
    text-align: center;
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-privacy-policy__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
}

.page-privacy-policy__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    color: #ffffff;
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        padding: 0 30px;
    }
    .page-privacy-policy__content-area {
        padding: 40px 30px;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__content-area {
        padding: 30px 15px;
        margin-top: -30px;
    }
    .page-privacy-policy__container,
    .page-privacy-policy__image-block,
    .page-privacy-policy__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__text-block,
    .page-privacy-policy__list li,
    .page-privacy-policy__faq-item summary,
    .page-privacy-policy__faq-answer {
        font-size: 0.95em;
        line-height: 1.6;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__faq-section {
        padding: 50px 15px;
    }
    .page-privacy-policy__faq-item summary {
        padding: 15px 20px;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 20px 15px;
    }
}