/* style/privacy-policy.css */
/* body đã có padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    background-color: #08160F; /* Custom palette: Background */
    color: #F2FFF6; /* Custom palette: Text Main */
    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; /* Nhỏ hơn so với header offset */
    text-align: center;
    background-color: #08160F;
}

.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;
    border-radius: 10px;
}

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

.page-privacy-policy__main-title {
    color: #F2FFF6; /* Custom palette: Text Main */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.page-privacy-policy__description {
    color: #A7D9B8; /* Custom palette: Text Secondary */
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-privacy-policy__content-section {
    padding: 40px 20px;
    background-color: #08160F; /* Custom palette: Background */
}

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

.page-privacy-policy__section-title {
    color: #F2FFF6; /* Custom palette: Text Main */
    font-size: 2.2em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #2E7A4E; /* Custom palette: Border */
    padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
    color: #F2FFF6; /* Custom palette: Text Main */
    font-size: 1.6em;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__text {
    color: #F2FFF6; /* Custom palette: Text Main */
    margin-bottom: 20px;
}

.page-privacy-policy__list {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Custom palette: Text Main */
}

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

.page-privacy-policy__link {
    color: #57E38D; /* Custom palette: Glow */
    text-decoration: underline;
}

.page-privacy-policy__link:hover {
    color: #2AD16F; /* Button top color for hover */
}

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

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

.page-privacy-policy__faq-section {
    margin-top: 50px;
    background-color: #11271B; /* Custom palette: Card BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Custom palette: Border */
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
    color: #F2FFF6;
    border-bottom: 1px solid #2E7A4E;
    padding-bottom: 15px;
    margin-top: 0;
    text-align: center;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #1E3A2A; /* Custom palette: Divider */
    padding-bottom: 15px;
}

.page-privacy-policy__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #F2FFF6; /* Custom palette: Text Main */
    padding: 10px 0;
    list-style: none; /* For details summary */
}

.page-privacy-policy__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

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

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    margin-left: 10px;
    color: #57E38D; /* Custom palette: Glow */
}

.page-privacy-policy__faq-answer {
    padding-top: 10px;
    padding-bottom: 5px;
    color: #A7D9B8; /* Custom palette: Text Secondary */
}

.page-privacy-policy__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #11271B; /* Custom palette: Card BG */
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Custom palette: Border */
}

.page-privacy-policy__cta-text {
    font-size: 1.2em;
    color: #F2FFF6; /* Custom palette: Text Main */
    margin-bottom: 25px;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom palette: Button */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    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 {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .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: 40px 15px;
        padding-top: 10px !important;
    }
    .page-privacy-policy__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px;
    }
    .page-privacy-policy__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__content-section {
        padding: 30px 0;
    }
    .page-privacy-policy__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em !important;
        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, .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__list {
        padding-left: 20px;
    }

    /* Image responsive rules */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__hero-image-wrapper,
    .page-privacy-policy__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Button responsive rules */
    .page-privacy-policy__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }
    .page-privacy-policy__cta-block {
        padding: 20px 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.1em !important;
    }

    /* FAQ responsive rules */
    .page-privacy-policy__faq-section {
        padding: 20px 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-privacy-policy__faq-question {
        font-size: 1em;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 1.2em;
    }
    .page-privacy-policy__faq-answer {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em !important;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em !important;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
}