/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff; /* Đảm bảo màu trắng trên nền gradient */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Màu xám nhạt trên nền gradient */
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-gdpr__section--dark {
    background-color: #000080;
    color: #ffffff;
}

.page-gdpr__section--dark .page-gdpr__heading {
    color: #FFD700;
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #000080;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.page-gdpr__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
    text-align: justify;
}

.page-gdpr__section--dark .page-gdpr__text {
    color: #e0e0e0;
}

.page-gdpr__inline-link {
    color: #000080;
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr__section--dark .page-gdpr__inline-link {
    color: #FFD700;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-gdpr__list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

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

.page-gdpr__grid-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__grid-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-gdpr__grid-title {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 10px;
}

.page-gdpr__grid-text {
    font-size: 1em;
    color: #555;
}

.page-gdpr__section--cta {
    background-color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__container--flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-gdpr__cta-content {
    max-width: 600px;
    text-align: left;
}

.page-gdpr__heading--cta {
    color: #000080;
    text-align: left;
}

.page-gdpr__heading--cta::after {
    left: 0;
    transform: translateX(0);
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__cta-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__cta-content {
        text-align: center;
    }
    .page-gdpr__heading--cta::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__heading {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-gdpr__text, .page-gdpr__list li, .page-gdpr__grid-text {
        font-size: 0.95em;
    }
    .page-gdpr__list {
        max-width: 100%;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__cta-image {
        max-width: 100%;
    }
    .page-gdpr__container--flex {
        flex-direction: column;
    }
    .page-gdpr__cta-content {
        text-align: center;
        margin-bottom: 30px;
    }
    .page-gdpr__heading--cta::after {
        left: 50%;
        transform: translateX(-50%);
    }
}