/* style/gdpr.css */

/* Biến CSS */
:root {
    --page-gdpr-primary-color: #1A2B4C;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-light: #f8f8f8;
    --page-gdpr-text-dark: #333333;
    --page-gdpr-background-alt: #f0f2f5;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: var(--page-gdpr-text-dark);
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color), #3A4C70);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.page-gdpr__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-gdpr-secondary-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-gdpr__button {
    display: inline-block;
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-gdpr__button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-gdpr__section--alt {
    background-color: var(--page-gdpr-background-alt);
}

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

.page-gdpr__section-content--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-gdpr__heading {
    font-size: 2em;
    color: var(--page-gdpr-primary-color);
    margin-bottom: 25px;
    border-left: 5px solid var(--page-gdpr-secondary-color);
    padding-left: 15px;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-gdpr__list li strong {
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__contact-section {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__contact-section .page-gdpr__heading {
    color: var(--page-gdpr-secondary-color);
    border-left-color: var(--page-gdpr-text-light);
    margin-bottom: 20px;
    text-align: center;
    padding-left: 0;
    border-left: none;
}

.page-gdpr__contact-text {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-gdpr__contact-info {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-gdpr__contact-link {
    color: var(--page-gdpr-secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-gdpr__button--secondary {
    background-color: var(--page-gdpr-text-light);
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__button--secondary:hover {
    background-color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__section-content {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr__section-content--reverse {
        flex-direction: column;
    }

    .page-gdpr__text-content, .page-gdpr__image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-gdpr__heading {
        text-align: center;
        padding-left: 0;
        border-left: none;
    }

    .page-gdpr__list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__heading {
        font-size: 1.7em;
    }

    .page-gdpr__hero, .page-gdpr__section, .page-gdpr__contact-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-gdpr__list li {
        font-size: 0.95em;
    }
}