/* style/gdpr.css */

/* Biến CSS */
:root {
    --page-gdpr-primary-color: #007BFF;
    --page-gdpr-secondary-color: #FFC107;
    --page-gdpr-text-dark: #333333;
    --page-gdpr-text-light: #ffffff;
    --page-gdpr-bg-light: #f8f9fa;
    --page-gdpr-bg-dark: #212529;
    --page-gdpr-border-color: #dee2e6;
}

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

.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), #0056b3);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr-hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-hero-subtitle {
    font-size: 1.4em;
    opacity: 0.9;
}

/* General Section Styling */
.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-title {
    font-size: 2.5em;
    color: var(--page-gdpr-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--page-gdpr-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.page-gdpr-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Content Grid */
.page-gdpr-content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-gdpr-content-grid .page-gdpr-text-content {
    flex: 1;
}

.page-gdpr-content-grid .page-gdpr-image-wrapper {
    flex: 1;
    text-align: center;
}

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

/* List Styling */
.page-gdpr-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-gdpr-list li::before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--page-gdpr-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.page-gdpr-list--two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

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

.page-gdpr-card {
    background-color: #ffffff;
    border: 1px solid var(--page-gdpr-border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr-card-title {
    font-size: 1.5em;
    color: var(--page-gdpr-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr-card p {
    font-size: 1em;
    color: #555;
}

/* Contact Section */
.page-gdpr-contact .page-gdpr-content-grid {
    flex-direction: row-reverse; /* Image on right, text on left */
}

.page-gdpr-contact p strong {
    color: var(--page-gdpr-primary-color);
}

.page-gdpr-cta-text {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr-button {
    display: inline-block;
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-text-dark);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    margin-left: 10px; /* Space from text */
    border: 1px solid var(--page-gdpr-secondary-color);
}

.page-gdpr-button:hover {
    background-color: #e0ac00;
    color: var(--page-gdpr-text-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Disclaimer */
.page-gdpr-disclaimer {
    background-color: var(--page-gdpr-bg-dark);
    color: var(--page-gdpr-text-light);
    padding: 30px 0;
    text-align: center;
}

.page-gdpr-disclaimer-text {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr-hero-title {
        font-size: 2.5em;
    }

    .page-gdpr-hero-subtitle {
        font-size: 1.2em;
    }

    .page-gdpr-title {
        font-size: 2em;
    }

    .page-gdpr-content-grid {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr-content-grid .page-gdpr-image-wrapper {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }

    .page-gdpr-list--two-columns {
        grid-template-columns: 1fr;
    }

    .page-gdpr-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-gdpr-button {
        display: block;
        width: fit-content;
        margin: 20px auto 0 auto;
    }
}

@media (max-width: 576px) {
    .page-gdpr-hero-title {
        font-size: 2em;
    }

    .page-gdpr-hero-subtitle {
        font-size: 1em;
    }

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

    .page-gdpr-section {
        padding: 40px 0;
    }

    .page-gdpr-card {
        padding: 20px;
    }
}