/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5ddc6; /* Light text for dark background */
    background-color: #0A2239; /* Primary dark background */
}

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

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #0A2239 0%, #1f4bff 100%); /* Primary dark to a dark blue contrast */
    text-align: center;
    padding: 100px 20px;
    color: #FFFFFF;
}

.page-gdpr-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B400; /* Secondary color for emphasis */
    line-height: 1.2;
}

.page-gdpr-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9cb4d; /* Lighter variant of secondary for subtitle */
}

.page-gdpr-heading {
    font-size: 2.2em;
    color: #E0B400; /* Secondary color for main headings */
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B400;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-gdpr-subheading {
    font-size: 1.6em;
    color: #e9cb4d; /* Lighter secondary for subheadings */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr-article-body p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f5ddc6;
}

.page-gdpr-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f5ddc6;
}

.page-gdpr-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-gdpr-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-gdpr-btn-primary {
    background-color: #E0B400; /* Secondary color for primary CTA */
    color: #0A2239; /* Primary dark for text */
    border: 2px solid #E0B400;
}

.page-gdpr-btn-primary:hover {
    background-color: #f5ddc6; /* Lighter variant on hover */
    color: #0A2239;
    transform: translateY(-3px);
}

.page-gdpr-btn-secondary {
    background-color: #0A2239; /* Primary dark for secondary CTA */
    color: #E0B400; /* Secondary color for text */
    border: 2px solid #E0B400;
}

.page-gdpr-btn-secondary:hover {
    background-color: #1f4bff; /* A complementary dark blue for hover */
    color: #E0B400;
    transform: translateY(-3px);
}

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

.page-gdpr-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1a3a57; /* Slightly lighter dark blue for CTA background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr-cta-text {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #f5ddc6;
    font-weight: bold;
}

.page-gdpr-article-body a {
    color: #E0B400;
    text-decoration: underline;
}

.page-gdpr-article-body a:hover {
    color: #f5ddc6;
    text-decoration: none;
}

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

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

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

    .page-gdpr-subheading {
        font-size: 1.4em;
    }

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

    .page-gdpr-cta-text {
        font-size: 1.2em;
    }

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

    .page-gdpr-hero {
        padding: 80px 20px;
    }
}

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

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

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

    .page-gdpr-subheading {
        font-size: 1.2em;
    }

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

    .page-gdpr-list {
        margin-left: 15px;
    }

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