/* style/gdpr-compliance.css */

.page-gdpr-compliance {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for main text */
    background-color: #f8f9fa; /* Light background */
}

.page-gdpr-compliance__hero-section {
    background-color: #007bff; /* Primary brand color */
    color: #ffffff; /* White text for contrast */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-compliance__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.2); /* Auxiliary color with transparency */
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.page-gdpr-compliance__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 123, 255, 0.2); /* Primary color with transparency */
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

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

.page-gdpr-compliance__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.page-gdpr-compliance__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    color: #e9ecef;
}

.page-gdpr-compliance__content-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.page-gdpr-compliance__article {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr-compliance__heading {
    font-size: 2em;
    color: #007bff; /* Primary brand color for headings */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc107; /* Auxiliary color for emphasis */
    padding-bottom: 10px;
}

.page-gdpr-compliance__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #495057;
}

.page-gdpr-compliance__article strong {
    color: #007bff;
}

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

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

.page-gdpr-compliance__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr-compliance__contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-compliance__contact-link:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker shade on hover */
}

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

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

    .page-gdpr-compliance__heading {
        font-size: 1.6em;
    }

    .page-gdpr-compliance__article {
        padding: 20px;
    }

    .page-gdpr-compliance__list {
        padding-left: 20px;
    }
}

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

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

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