/* style/gdpr.css */

/* Biến CSS */
:root {
    --page-gdpr-primary-color: #0A2239;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-dark: #333;
    --page-gdpr-text-light: #f8f8f8;
    --page-gdpr-bg-light: #ffffff;
    --page-gdpr-bg-dark: #0A2239;
    --page-gdpr-link-hover: #e6c200;
}

.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;
}

.page-gdpr__hero-section {
    background-color: var(--page-gdpr-bg-dark);
    background-image: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #2a4a6b 100%);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-gdpr-secondary-color);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

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

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

.page-gdpr__section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    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(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__item {
    background-color: var(--page-gdpr-bg-light);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

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

.page-gdpr__item-description {
    color: var(--page-gdpr-text-dark);
    font-size: 0.95em;
}

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

.page-gdpr__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--page-gdpr-text-dark);
    text-align: justify;
}

.page-gdpr__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--page-gdpr-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__image--left {
    float: left;
    margin-right: 30px;
    width: 40%;
    min-width: 300px;
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    width: 40%;
    min-width: 300px;
}

.page-gdpr__user-rights .page-gdpr__container::after,
.page-gdpr__data-security .page-gdpr__container::after {
    content: '';
    display: table;
    clear: both;
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--page-gdpr-primary-color);
}

.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: var(--page-gdpr-secondary-color);
    text-decoration: underline;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.page-gdpr__btn--primary {
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    border: 2px solid var(--page-gdpr-secondary-color);
}

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

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: var(--page-gdpr-primary-color);
    border: 2px solid var(--page-gdpr-primary-color);
}

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

.page-gdpr__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__item {
        padding: 20px;
    }
    .page-gdpr__image--left,
    .page-gdpr__image--right {
        float: none;
        width: 100%;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }
    .page-gdpr__list li {
        font-size: 1em;
    }
}