/* style/gdpr.css */

/* Biến màu */
:root {
    --page-gdpr-primary-color: #0A1931;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-light: #F8F9FA;
    --page-gdpr-text-dark: #0A1931;
    --page-gdpr-background-light: #FFFFFF;
    --page-gdpr-background-alt: #F0F2F5;
}

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

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

.page-gdpr__hero {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

.page-gdpr__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-left: 20px;
}

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-light);
    line-height: 1.2;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-gdpr-text-light);
    opacity: 0.9;
}

.page-gdpr__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

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

.page-gdpr__button {
    display: inline-block;
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

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

.page-gdpr__section {
    padding: 60px 0;
    background-color: var(--page-gdpr-background-light);
    color: var(--page-gdpr-text-dark);
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--page-gdpr-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-gdpr-secondary-color);
    border-radius: 2px;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

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

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

.page-gdpr__grid-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2)); /* Example filter, might need actual icon image */
}

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

.page-gdpr__grid-text {
    font-size: 0.95em;
    color: var(--page-gdpr-text-dark);
    line-height: 1.7;
}

.page-gdpr__full-width-image {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-gdpr__contact-section {
    text-align: center;
}

.page-gdpr__contact-info {
    font-size: 1.2em;
    margin: 30px 0;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__button--cta {
    margin-top: 20px;
}

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

    .page-gdpr__hero-content,
    .page-gdpr__hero-image-wrapper {
        padding: 0 20px;
    }

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

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

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

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

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

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

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

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

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

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__grid-item {
        padding: 25px;
    }

    .page-gdpr__grid-icon {
        width: 50px;
        height: 50px;
    }

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

    .page-gdpr__contact-info {
        font-size: 1.1em;
    }
}

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

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

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

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

    .page-gdpr__text {
        font-size: 0.95em;
    }

    .page-gdpr__grid-item {
        padding: 20px;
    }

    .page-gdpr__grid-title {
        font-size: 1.2em;
    }
}