.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Màu chữ nhạt cho nền tối */
    background-color: #0A192F; /* Màu nền chính */
    line-height: 1.6;
}

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

.page-privacy-policy__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%); /* Gradient từ màu chính */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    animation: page-privacy-policy__rotate 20s linear infinite;
    z-index: 0;
}

@keyframes page-privacy-policy__rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Màu vàng phụ trợ */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-privacy-policy__intro-text {
    font-size: 1.15em;
    color: #C0C0C0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__sub-intro {
    font-size: 1em;
    color: #A0A0A0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-image,
.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-privacy-policy__content-section {
    padding: 60px 0;
}

.page-privacy-policy__heading {
    font-size: 2.2em;
    color: #FFD700; /* Màu vàng phụ trợ */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-privacy-policy__sub-heading {
    font-size: 1.6em;
    color: #F0F0F0;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #FFD700;
}

.page-privacy-policy__paragraph {
    font-size: 1.05em;
    color: #C0C0C0;
    margin-bottom: 15px;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

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

.page-privacy-policy__list-item strong {
    color: #E0E0E0;
}

.page-privacy-policy__link {
    color: #FFD700; /* Màu vàng cho liên kết */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #FFF2A0;
    text-decoration: underline;
}

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #1A3A5F;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-text {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-privacy-policy__btn {
    display: inline-block;
    background-color: #FFD700; /* Nút màu vàng */
    color: #0A192F; /* Chữ màu xanh đậm */
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn:hover {
    background-color: #FFF2A0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__heading {
        font-size: 2em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1.5em;
    }
    .page-privacy-policy__intro-text,
    .page-privacy-policy__paragraph {
        font-size: 1em;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.5em;
    }
    .page-privacy-policy__btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 0 30px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__heading {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1.3em;
    }
    .page-privacy-policy__container {
        padding: 15px;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.3em;
    }
    .page-privacy-policy__btn {
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__heading {
        font-size: 1.6em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1.2em;
    }
    .page-privacy-policy__intro-text,
    .page-privacy-policy__paragraph {
        font-size: 0.95em;
    }
    .page-privacy-policy__list-item {
        font-size: 0.9em;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.1em;
    }
    .page-privacy-policy__btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }
    .page-privacy-policy__image-wrapper {
        margin: 20px auto;
    }
}