/* style/privacy-policy.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */

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

.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: var(--k9club-text-main); /* Text main color for dark background */
    background-color: var(--k9club-bg-dark);
    line-height: 1.6;
}

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

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--k9club-bg-dark);
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for hero image */
}

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

.page-privacy-policy__main-title {
    color: var(--k9club-text-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-privacy-policy__description {
    color: var(--k9club-text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

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

.page-privacy-policy__btn-primary {
    background: var(--k9club-btn-gradient);
    color: #ffffff; /* White text for primary button */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-privacy-policy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-privacy-policy__btn-secondary {
    background: none;
    color: var(--k9club-primary); /* Primary color for secondary button text */
    border: 2px solid var(--k9club-primary);
}

.page-privacy-policy__btn-secondary:hover {
    background-color: var(--k9club-primary);
    color: #ffffff;
}

.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: var(--k9club-bg-dark);
    color: var(--k9club-text-main);
}

.page-privacy-policy__dark-section {
    background-color: var(--k9club-bg-dark);
    color: var(--k9club-text-main);
}

.page-privacy-policy__section-title {
    color: var(--k9club-primary);
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-privacy-policy__sub-title {
    color: var(--k9club-text-main);
    font-size: 1.6em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-privacy-policy__text-block {
    color: var(--k9club-text-secondary);
    margin-bottom: 20px;
}

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

.page-privacy-policy__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--k9club-text-secondary);
}

.page-privacy-policy__list-item::before {
    content: '✅'; /* Green checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--k9club-primary);
    font-size: 1.2em;
}

.page-privacy-policy__list-item strong {
    color: var(--k9club-text-main);
}

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

.page-privacy-policy__image-block {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px auto;
    box-sizing: border-box;
    overflow: hidden;
}

.page-privacy-policy__content-area a {
    color: var(--k9club-primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__content-area a:hover {
    color: var(--k9club-glow);
    text-decoration: underline;
}

/* FAQ Section */
.page-privacy-policy__faq-list {
    margin-top: 40px;
}

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

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    color: var(--k9club-text-main);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-privacy-policy__faq-question:hover {
    background-color: var(--k9club-deep-green);
}

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

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--k9club-primary);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    color: var(--k9club-gold);
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--k9club-text-secondary);
    font-size: 1em;
}

.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
    color: var(--k9club-text-secondary);
}

/* CTA Section */
.page-privacy-policy__cta-section {
    background-color: var(--k9club-deep-green);
    padding: 80px 0;
    text-align: center;
    color: var(--k9club-text-main);
}

.page-privacy-policy__cta-container {
    max-width: 900px;
}

.page-privacy-policy__cta-title {
    color: var(--k9club-gold);
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-privacy-policy__cta-description {
    color: var(--k9club-text-secondary);
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-privacy-policy__container,
    .page-privacy-policy__hero-content,
    .page-privacy-policy__cta-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* body already handles header offset */
    }

    .page-privacy-policy__hero-image {
        max-height: 400px;
    }

    .page-privacy-policy__main-title {
        font-size: 1.8em; /* Adjusted for mobile, not fixed large */
        line-height: 1.3;
    }

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

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

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

    .page-privacy-policy__text-block,
    .page-privacy-policy__list-item,
    .page-privacy-policy__faq-answer p {
        font-size: 0.95em;
    }

    .page-privacy-policy img,
    .page-privacy-policy__hero-image,
    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-privacy-policy__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

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

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

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

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

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

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

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