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

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

.page-gdpr-compliance__hero-section {
    background-color: #007BFF; /* Primary color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-compliance__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(255, 193, 7, 0.7)); /* Gradient with primary and accent */
    z-index: 1;
}

.page-gdpr-compliance__hero-section .page-gdpr-compliance__container {
    position: relative;
    z-index: 2;
}

.page-gdpr-compliance__hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-gdpr-compliance__hero-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr-compliance__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-gdpr-compliance__section h2 {
    font-size: 2.5em;
    color: #007BFF; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr-compliance__section h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.page-gdpr-compliance__section p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #495057;
}

.page-gdpr-compliance__content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

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

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

.page-gdpr-compliance__sidebar li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

.page-gdpr-compliance__sidebar li::before {
    content: '✔';
    color: #FFC107; /* Accent color */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-gdpr-compliance__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
}

.page-gdpr-compliance__btn--primary {
    background-color: #FFC107; /* Accent color */
    color: #333;
    border: 2px solid #FFC107;
}

.page-gdpr-compliance__btn--primary:hover {
    background-color: #e0a800;
    color: #FFFFFF;
    border-color: #e0a800;
}

.page-gdpr-compliance__btn--secondary {
    background-color: #007BFF; /* Primary color */
    color: #FFFFFF;
    border: 2px solid #007BFF;
}

.page-gdpr-compliance__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

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

.page-gdpr-compliance__image--large {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr-compliance__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr-compliance__right-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #007BFF; /* Primary color accent */
}

.page-gdpr-compliance__right-card h3 {
    color: #007BFF;
    margin-top: 0;
}

.page-gdpr-compliance__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #6c757d;
}

.page-gdpr-compliance__note a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-compliance__note a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr-compliance__content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-gdpr-compliance__hero-section h1 {
        font-size: 2.5em;
    }

    .page-gdpr-compliance__hero-section p {
        font-size: 1em;
    }

    .page-gdpr-compliance__section h2 {
        font-size: 2em;
    }

    .page-gdpr-compliance__rights-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .page-gdpr-compliance__hero-section {
        padding: 60px 0;
    }

    .page-gdpr-compliance__hero-section h1 {
        font-size: 2em;
    }

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

    .page-gdpr-compliance__text-content, .page-gdpr-compliance__sidebar {
        padding: 20px;
    }
}