/* style/gdpr.css */

/* Variables for consistency */
:root {
    --page-gdpr-primary-color: #0A2239;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-light: #FFFFFF;
    --page-gdpr-text-dark: #333333;
    --page-gdpr-background-light: #F8F8F8;
    --page-gdpr-background-dark: #0A2239;
}

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

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

.page-gdpr__hero {
    background-color: var(--page-gdpr-background-dark);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 34, 57, 0.9), rgba(255, 215, 0, 0.2));
    z-index: 0;
}

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

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

.page-gdpr__description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--page-gdpr-text-light);
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__subtitle {
    font-size: 2.2em;
    color: var(--page-gdpr-primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__introduction p, .page-gdpr__rights p, .page-gdpr__contact p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

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

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    padding-left: 0;
    font-size: 1.1em;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

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

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

.page-gdpr__card {
    background-color: var(--page-gdpr-text-light);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px 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 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

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

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

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

.page-gdpr__btn {
    display: inline-block;
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-gdpr__btn:hover {
    background-color: #e6c200;
    color: var(--page-gdpr-background-dark);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

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

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

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

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

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

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

    .page-gdpr__description,
    .page-gdpr__introduction p,
    .page-gdpr__rights p,
    .page-gdpr__list li,
    .page-gdpr__card p,
    .page-gdpr__contact p {
        font-size: 1em;
    }

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