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

.page-gdpr-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-gdpr-hero {
    background-color: #0A2463;
    color: #FFFFFF;
    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_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 1;
}

.page-gdpr-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.page-gdpr-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Deep Blue */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.page-gdpr-button:hover {
    background-color: #0A2463; /* Deep Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

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

.page-gdpr-section-dark {
    background-color: #0A2463;
    color: #FFFFFF;
}

.page-gdpr-section-dark .page-gdpr-heading {
    color: #FFD700; /* Gold for headings on dark background */
}

.page-gdpr-heading {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr-section p {
    font-size: 1.05em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-gdpr-list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

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

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

.page-gdpr-contact {
    text-align: center;
    padding-bottom: 80px;
}

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

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

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

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

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

    .page-gdpr-heading {
        font-size: 1.8em;
    }

    .page-gdpr-section {
        padding: 40px 0;
    }

    .page-gdpr-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

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

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

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

    .page-gdpr-list {
        margin-left: 0;
        list-style-position: outside;
    }
}