/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-gdpr__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #fff;
    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,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.3;
    animation: page-gdpr__pulse 10s infinite alternate;
}

@keyframes page-gdpr__pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.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__highlight {
    font-weight: bold;
    color: #FFD700;
}

.page-gdpr__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-gdpr__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #8B0000;
    margin-bottom: 30px;
    text-align: center;
    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: #FFD700;
    border-radius: 2px;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #444;
}

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

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

.page-gdpr__image--full-width {
    margin: 40px 0;
    width: 100%;
}

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

.page-gdpr__card {
    background-color: #fff;
    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 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
}

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

.page-gdpr__card img {
    max-width: 80px;
    height: auto;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: none;
}

.page-gdpr__note {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: #666;
}

.page-gdpr__contact p {
    text-align: center;
    font-size: 1.1em;
}

.page-gdpr__link {
    color: #8B0000;
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr__link:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}