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

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

.page-gdpr-hero {
    background-color: #0A2463; /* Primary color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Secondary color for emphasis */
}

.page-gdpr-subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

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

.page-gdpr-dark-bg {
    background-color: #f0f4f7; /* Lighter shade for contrast on text */
}

.page-gdpr-dark-bg .page-gdpr-section-title,
.page-gdpr-dark-bg p,
.page-gdpr-dark-bg li {
    color: #222; /* Darker text for readability on light background */
}

.page-gdpr-section-title {
    font-size: 2em;
    color: #0A2463; /* Primary color */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Secondary color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-gdpr-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-gdpr-list li strong {
    color: #0A2463;
}

.page-gdpr-center-text {
    text-align: center;
}

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

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

.page-gdpr-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color */
    color: #0A2463; /* Primary color for text on secondary background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 30px;
}

.page-gdpr-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #0A2463;
}

/* 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-section {
        padding: 40px 0;
    }

    .page-gdpr-list {
        padding-left: 0;
        list-style: none;
    }

    .page-gdpr-list li::before {
        content: '• ';
        color: #FFD700;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .page-gdpr-image {
        max-width: 95%;
    }
}

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

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

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

    .page-gdpr-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}