.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for text on dark backgrounds */
    background-color: #1A202C; /* Dark background */
}

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

.page-gdpr__grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.page-gdpr__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #FFD700, #1A202C);
    padding: 100px 0;
    text-align: center;
    color: #1A202C; /* Dark text on gold gradient */
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A202C;
}

.page-gdpr__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #333;
}

.page-gdpr__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;
}

.page-gdpr__btn--primary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #1A202C;
}

.page-gdpr__btn--primary:hover {
    background-color: #333;
    color: #FFD700;
}

.page-gdpr__btn--secondary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #e6c200;
    color: #1A202C;
}

.page-gdpr__intro-section, .page-gdpr__user-rights-section, .page-gdpr__contact-section {
    padding: 80px 0;
    background-color: #1A202C;
    color: #E0E0E0;
}

.page-gdpr__data-collection-section, .page-gdpr__security-section {
    padding: 80px 0;
    background-color: #2a3442; /* Slightly lighter dark for contrast */
    color: #E0E0E0;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
}

.page-gdpr__intro-section .page-gdpr__section-title, 
.page-gdpr__user-rights-section .page-gdpr__section-title, 
.page-gdpr__contact-section .page-gdpr__section-title {
    color: #FFD700;
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--full-width {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 800px;
}

.page-gdpr__card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 100%;
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__list li {
    background-color: #2a3442;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.page-gdpr__list li strong {
    color: #FFD700;
    margin-right: 10px;
}

.page-gdpr__list li::before {
    content: '✓';
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold;
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

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

.page-gdpr__contact-list a {
    color: #FFD700;
    text-decoration: none;
}

.page-gdpr__contact-list a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-gdpr__grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-gdpr__intro-section .page-gdpr__grid,
    .page-gdpr__user-rights-section .page-gdpr__grid {
        grid-template-columns: 1fr 1.2fr;
    }
    .page-gdpr__user-rights-section .page-gdpr__grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 767px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__intro-section .page-gdpr__grid,
    .page-gdpr__user-rights-section .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__image-block {
        order: -1; /* Image first on mobile */
    }
    .page-gdpr__card {
        padding: 20px;
    }
}