/* style/gdpr.css */

/* Biến CSS */
:root {
    --page-gdpr-primary-color: #0A192F;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-light: #F8F8F8;
    --page-gdpr-text-dark: #333333;
    --page-gdpr-accent-red: #E74C3C;
    --page-gdpr-link-color: #FFD700;
    --page-gdpr-link-hover: #E6C200;
}

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

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #1a3a6b 100%);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-gdpr-secondary-color);
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-gdpr__btn {
    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;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-gdpr__btn:hover {
    background-color: var(--page-gdpr-link-hover);
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: var(--page-gdpr-accent-red);
    color: var(--page-gdpr-text-light);
}

.page-gdpr__btn--secondary:hover {
    background-color: #C0392B;
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: var(--page-gdpr-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__sub-title {
    font-size: 1.5em;
    color: var(--page-gdpr-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__section p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-gdpr__section a {
    color: var(--page-gdpr-link-color);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__section a:hover {
    text-decoration: underline;
    color: var(--page-gdpr-link-hover);
}

/* Content Flex Layout */
.page-gdpr__content-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-gdpr__content-flex .page-gdpr__text-content {
    flex: 2;
}

.page-gdpr__content-flex .page-gdpr__image-wrapper {
    flex: 1;
    text-align: center;
}

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

.page-gdpr__image--centered {
    display: block;
    margin: 40px auto;
    max-width: 80%;
}

/* Data Points / Grid Layout */
.page-gdpr__data-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__data-point {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--page-gdpr-secondary-color);
}

.page-gdpr__data-point h3 {
    color: var(--page-gdpr-primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* List Styling */
.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

/* User Rights Grid */
.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__right-item {
    background-color: #f0f5fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.page-gdpr__right-item h3 {
    color: var(--page-gdpr-primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--page-gdpr-secondary-color);
    padding-bottom: 5px;
}

.page-gdpr__callout {
    background-color: #fffbe6;
    border-left: 5px solid var(--page-gdpr-secondary-color);
    padding: 20px;
    margin: 40px 0;
    font-style: italic;
    color: var(--page-gdpr-text-dark);
    font-size: 1.1em;
}

/* Contact Section */
.page-gdpr__contact p {
    text-align: center;
    font-size: 1.1em;
}

.page-gdpr__contact .page-gdpr__link {
    font-size: 1.1em;
    color: var(--page-gdpr-primary-color);
}

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

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

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

    .page-gdpr__section-title {
        font-size: 1.8em;
    }

    .page-gdpr__content-flex {
        flex-direction: column;
    }

    .page-gdpr__data-points,
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-gdpr__section-title {
        font-size: 1.5em;
    }

    .page-gdpr__sub-title {
        font-size: 1.3em;
    }

    .page-gdpr__section p,
    .page-gdpr__list li,
    .page-gdpr__data-point h3,
    .page-gdpr__right-item h3 {
        font-size: 0.95em;
    }
}