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

.page-gdpr-hero {
    background: linear-gradient(135deg, #0A246A, #1a3a8a);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-gdpr-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-gdpr-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-gdpr-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-gdpr-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

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

.page-gdpr-btn-secondary {
    background-color: #0A246A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
    background-color: #1a3a8a;
    color: #FFD700;
}

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

.page-gdpr-alt-bg {
    background-color: #f9f9f9;
}

.page-gdpr-section-title {
    font-size: 2em;
    color: #0A246A;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-gdpr p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.page-gdpr-list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #555;
}

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

.page-gdpr-highlight {
    color: #0A246A;
    font-weight: bold;
}

.page-gdpr-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.page-gdpr-image-fullwidth {
    margin: 40px auto;
}

.page-gdpr-link {
    color: #0A246A;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-link:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-gdpr-contact {
    background-color: #0A246A;
    color: #fff;
    text-align: center;
}

.page-gdpr-contact .page-gdpr-section-title {
    color: #FFD700;
}

.page-gdpr-contact .page-gdpr-section-title::after {
    background-color: #fff;
}

.page-gdpr-contact p, .page-gdpr-contact .page-gdpr-list li {
    color: #e0e0e0;
}

.page-gdpr-contact .page-gdpr-link {
    color: #FFD700;
}

.page-gdpr-contact .page-gdpr-link:hover {
    color: #fff;
}

/* Responsive adjustments */
@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-section {
        padding: 40px 15px;
    }
}

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

    .page-gdpr-subtitle {
        font-size: 0.9em;
    }

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

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