/* style/gdpr.css */

/* Biến CSS */
:root {
    --page-gdpr-primary-color: #003366;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-dark: #333333;
    --page-gdpr-text-light: #ffffff;
    --page-gdpr-background-light: #f8f8f8;
    --page-gdpr-border-color: #e0e0e0;
}

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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color), #004d99);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-gdpr-border-color);
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__heading {
    font-size: 2em;
    color: var(--page-gdpr-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr__heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--page-gdpr-secondary-color);
    margin: 10px auto 0;
}

.page-gdpr__introduction p, .page-gdpr__security p, .page-gdpr__contact p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__highlight {
    color: var(--page-gdpr-primary-color);
    font-weight: bold;
}

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

.page-gdpr__list li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--page-gdpr-secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-gdpr__list li:hover {
    transform: translateX(5px);
}

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

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

.page-gdpr__link {
    color: var(--page-gdpr-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__contact {
    text-align: center;
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
}

.page-gdpr__contact .page-gdpr__heading {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__contact .page-gdpr__heading::after {
    background-color: var(--page-gdpr-text-light);
}

.page-gdpr__contact p {
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__contact .page-gdpr__link {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__button {
    display: inline-block;
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2em;
    }

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

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

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__list li {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

    .page-gdpr__title {
        font-size: 1.8em;
    }

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

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

    .page-gdpr__introduction p, .page-gdpr__security p, .page-gdpr__contact p {
        font-size: 0.95em;
    }

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}