/* style/gdpr.css */

:root {
    --page-gdpr-primary-color: #FFD700; /* Gold */
    --page-gdpr-secondary-color: #4B0082; /* Dark Violet */
    --page-gdpr-text-dark: #333;
    --page-gdpr-text-light: #fff;
    --page-gdpr-background-light: #f9f9f9;
    --page-gdpr-background-dark: #3a0063; /* Slightly lighter dark violet for contrast */
    --page-gdpr-accent-color: #0028ff; /* Complementary to gold for emphasis */
    --page-gdpr-border-color: #ddd;
}

.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: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, var(--page-gdpr-secondary-color) 100%);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, rgba(75, 0, 130, 0.2) 70%);
    animation: page-gdpr-rotate 20s linear infinite;
    z-index: 0;
}

@keyframes page-gdpr-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-gdpr__hero .page-gdpr__container {
    position: relative;
    z-index: 1;
}

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

.page-gdpr__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__button {
    display: inline-block;
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-secondary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px; /* Ensure button is not too small */
    text-align: center;
}

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

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

.page-gdpr__button--secondary:hover {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-secondary-color);
}

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

.page-gdpr__section--alt {
    background-color: #eee;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--page-gdpr-secondary-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-primary-color);
    border-radius: 2px;
}

.page-gdpr__text {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
    color: var(--page-gdpr-text-dark);
}

.page-gdpr__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

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

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

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

.page-gdpr__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}

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

.page-gdpr__list li {
    background-color: var(--page-gdpr-text-light);
    border-left: 4px solid var(--page-gdpr-primary-color);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: var(--page-gdpr-text-dark);
}

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

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: var(--page-gdpr-text-dark);
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

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

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

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

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

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

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

    .page-gdpr__card {
        padding: 20px;
    }

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

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

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

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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