.page-privacy-policy {
    background-color: #0A0A0A; /* Background color from custom scheme */
    color: #FFF6D6; /* Main text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #111111; /* Card BG for this section */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above image if any overlap issues */
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size constraint */
    color: #FFD36B; /* Glow color for title */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    color: #FFF6D6;
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Example max width for the image */
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.3); /* Glow effect */
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-privacy-policy__article {
    background-color: #111111; /* Card BG color */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.2);
    border: 1px solid #3A2A12; /* Border color */
}

.page-privacy-policy__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Main color */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-privacy-policy__sub-section-title {
    font-size: 1.8rem;
    color: #FFD36B; /* Auxiliary color */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__paragraph {
    font-size: 1rem;
    color: #FFF6D6; /* Text Main color */
    margin-bottom: 15px;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #FFF6D6; /* Text Main color */
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-privacy-policy__list-item strong {
    color: #F2C14E; /* Main color for emphasis */
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(242, 193, 78, 0.2);
    border: 1px solid #3A2A12;
}

.page-privacy-policy__last-updated {
    font-style: italic;
    text-align: right;
    color: #FFD36B;
    margin-top: 30px;
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #FFF6D6;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Ensure buttons wrap on small screens */
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
    color: #111111; /* Ensure contrast on button */
    border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #FFE080 0%, #E8B020 100%);
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Main color */
    border: 2px solid #F2C14E; /* Main color as border */
}

.page-privacy-policy__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111; /* Dark text on hover */
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

/* --- Tablet Responsiveness --- */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-privacy-policy__section-title {
        font-size: 2rem;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.5rem;
    }
    .page-privacy-policy__article {
        padding: 30px;
    }
    .page-privacy-policy__content-area {
        padding: 40px 15px;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-privacy-policy__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 20px;
    }
    .page-privacy-policy__hero-content {
        margin-bottom: 20px;
        padding: 0 15px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-privacy-policy__description {
        font-size: 1rem;
    }

    /* 通用图片与容器 */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__article { /* Ensure content area containers are also responsive */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__content-area {
        padding: 30px 0; /* Adjust overall padding */
    }
    .page-privacy-policy__article {
        padding: 20px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95rem;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }

    /* 按钮与按钮容器 */
    .page-privacy-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px; /* Add padding to button container */
        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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    /* Sản phẩm/Trưng bày sản phẩm (nếu có) - Không có trong trang này, nhưng đảm bảo quy tắc cho các khối nội dung khác */
    /* Nếu có phần trưng bày sản phẩm, các quy tắc cho 768px sẽ ở đây, ví dụ: */
    /* .page-privacy-policy__products-grid { grid-template-columns: repeat(2, 1fr); } */
    /* .page-privacy-policy__product-card:nth-child(n+5) { grid-column: 1 / -1; } */

    /* Các module nội dung khác (FAQ, blog, v.v.) */
    /* Nếu có các phần như FAQ, blog, các quy tắc cho 768px sẽ ở đây. Ví dụ: */
    /* .page-privacy-policy__faq-item { padding: 15px; } */
    /* .page-privacy-policy__blog-card { flex-direction: column; } */
}