:root {
    --page-bg: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-privacy-policy {
    background-color: var(--page-bg);
    color: var(--text-main);
    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;
    padding: 60px 20px;
    padding-top: 10px; 
    box-sizing: border-box;
    overflow: hidden;
}

.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;
    border-radius: 10px;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

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

.page-privacy-policy__subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    background: var(--btn-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--gold-color);
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-privacy-policy__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--page-bg);
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-privacy-policy__section-intro,
.page-privacy-policy__info-collection-section,
.page-privacy-policy__data-usage-section,
.page-privacy-policy__disclosure-section,
.page-privacy-policy__cookies-section,
.page-privacy-policy__your-rights-section,
.page-privacy-policy__data-security-section,
.page-privacy-policy__third-party-links-section,
.page-privacy-policy__changes-section,
.page-privacy-policy__contact-section,
.page-privacy-policy__faq-section {
    margin-bottom: 50px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: var(--gold-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--divider-color);
    border-radius: 2px;
}

.page-privacy-policy__section-description {
    font-size: 1.05em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.page-privacy-policy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-privacy-policy__card {
    background-color: var(--deep-green);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-privacy-policy__card-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-privacy-policy__list,
.page-privacy-policy__list-bullet {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-privacy-policy__list li,
.page-privacy-policy__list-bullet li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-privacy-policy__list-bullet li::before {
    content: '•';
    color: var(--glow-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-privacy-policy__image-content {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy a {
    color: var(--glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-privacy-policy__faq-list {
    margin-top: 30px;
}

.page-privacy-policy__faq-item {
    background-color: var(--deep-green);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

.page-privacy-policy__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--gold-color);
    background-color: var(--deep-green);
    position: relative;
    user-select: none;
}

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

.page-privacy-policy__faq-question {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    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 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 0.95em;
}

/* --- Responsive Design --- */

.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-privacy-policy__card-image {
    max-width: 100%;
    width: auto;
}

.page-privacy-policy__hero-image-wrapper,
.page-privacy-policy__content-area,
.page-privacy-policy__section-intro,
.page-privacy-policy__info-collection-section,
.page-privacy-policy__data-usage-section,
.page-privacy-policy__disclosure-section,
.page-privacy-policy__cookies-section,
.page-privacy-policy__your-rights-section,
.page-privacy-policy__data-security-section,
.page-privacy-policy__third-party-links-section,
.page-privacy-policy__changes-section,
.page-privacy-policy__contact-section,
.page-privacy-policy__faq-section,
.page-privacy-policy__card-grid,
.page-privacy-policy__card,
.page-privacy-policy__faq-list {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 769px) {
    .page-privacy-policy__hero-content {
        padding: 0;
    }

    .page-privacy-policy__card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-privacy-policy__hero-section {
        padding: 80px 40px;
    }

    .page-privacy-policy__hero-image-wrapper {
        margin-bottom: 40px;
    }

    .page-privacy-policy__content-area {
        padding: 60px 40px;
    }

    .page-privacy-policy__card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-privacy-policy__section-intro,
    .page-privacy-policy__info-collection-section,
    .page-privacy-policy__data-usage-section,
    .page-privacy-policy__disclosure-section,
    .page-privacy-policy__cookies-section,
.page-privacy-policy__your-rights-section,
    .page-privacy-policy__data-security-section,
    .page-privacy-policy__third-party-links-section,
    .page-privacy-policy__changes-section,
    .page-privacy-policy__contact-section,
    .page-privacy-policy__faq-section {
        padding: 40px;
    }
}

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

    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-privacy-policy__hero-image-wrapper {
        margin-bottom: 20px;
    }

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

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

    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px;
        padding: 12px 15px;
    }

    .page-privacy-policy__content-area {
        padding: 20px 15px;
    }

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

    .page-privacy-policy__section-intro,
    .page-privacy-policy__info-collection-section,
    .page-privacy-policy__data-usage-section,
    .page-privacy-policy__disclosure-section,
    .page-privacy-policy__cookies-section,
.page-privacy-policy__your-rights-section,
    .page-privacy-policy__data-security-section,
    .page-privacy-policy__third-party-links-section,
    .page-privacy-policy__changes-section,
    .page-privacy-policy__contact-section,
    .page-privacy-policy__faq-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .page-privacy-policy__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-privacy-policy__card-image,
    .page-privacy-policy__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

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