:root {
    --dreamph-primary: #F2C14E;
    --dreamph-secondary: #FFD36B;
    --dreamph-card-bg: #111111;
    --dreamph-background: #0A0A0A;
    --dreamph-text-main: #FFF6D6;
    --dreamph-border: #3A2A12;
    --dreamph-glow: #FFD36B;
    --dreamph-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --dreamph-text-dark: #333333; /* For light backgrounds */
    --dreamph-text-light: #ffffff; /* For dark backgrounds */
}

.page-privacy-policy {
    background-color: var(--dreamph-background); /* From custom palette */
    color: var(--dreamph-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, not --header-offset */
    text-align: center;
    background-color: var(--dreamph-background);
    overflow: hidden;
}

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

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dreamph-primary);
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__content-section {
    background-color: var(--dreamph-card-bg);
    padding: 60px 20px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.page-privacy-policy__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--dreamph-primary);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-privacy-policy__sub-title {
    font-size: clamp(1.4em, 2.5vw, 1.8em);
    color: var(--dreamph-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-privacy-policy__link {
    color: var(--dreamph-secondary);
    text-decoration: underline;
}

.page-privacy-policy__link:hover {
    color: var(--dreamph-primary);
}

.page-privacy-policy__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: var(--dreamph-background);
    border-radius: 12px;
    border: 1px solid var(--dreamph-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-text {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin: 10px;
}

.page-privacy-policy__btn-primary {
    background: var(--dreamph-button-gradient);
    color: var(--dreamph-text-light);
    border: none;
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-privacy-policy__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-privacy-policy__btn-secondary {
    background: transparent;
    color: var(--dreamph-primary);
    border: 2px solid var(--dreamph-primary);
}

.page-privacy-policy__btn-secondary:hover {
    background: var(--dreamph-primary);
    color: var(--dreamph-text-light);
    transform: translateY(-2px);
}

.page-privacy-policy__faq-section {
    background-color: var(--dreamph-background);
    padding: 60px 20px;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__section-title--faq {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dreamph-primary);
}

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

.page-privacy-policy__faq-item {
    background-color: var(--dreamph-card-bg);
    border: 1px solid var(--dreamph-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--dreamph-card-bg);
    color: var(--dreamph-text-main);
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: #1a1a1a;
}

.page-privacy-policy__faq-heading {
    margin: 0;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--dreamph-secondary);
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
    color: var(--dreamph-primary);
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--dreamph-text-main);
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 20px;
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-privacy-policy__hero-section {
        padding: 40px 15px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-privacy-policy__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-privacy-policy__sub-title {
        font-size: clamp(1.2em, 5vw, 1.5em);
    }

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

    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    
    .page-privacy-policy__hero-image-container,
    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

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

    .page-privacy-policy__cta-text {
        font-size: 1.1em;
    }

    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary,
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 10px 0 !important;
    }

    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex-direction: column !important;
        gap: 10px;
    }

    .page-privacy-policy__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-privacy-policy__faq-answer {
        padding: 0 20px;
    }

    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-privacy-policy__content-section,
    .page-privacy-policy__faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}