.page-gdpr {
    padding-top: var(--header-offset, 120px);
    color: #333333; /* Default dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #FFD700, #1E90FF);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-gdpr__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Deep Blue */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__hero-cta:hover {
    background-color: #1E90FF; /* Deep Blue */
    color: #FFD700; /* Gold */
}

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

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

.page-gdpr__content-heading {
    font-size: 2.2em;
    color: #1E90FF; /* Deep Blue */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__sub-heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__list {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-gdpr__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
    font-size: 1.3em;
    color: #1E90FF; /* Deep Blue */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__contact-info {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin: 40px 0;
    border-radius: 8px;
}

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

.page-gdpr__contact-link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-gdpr__cta {
    display: inline-block;
    background-color: #1E90FF; /* Deep Blue */
    color: #FFD700; /* Gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__cta:hover {
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Deep Blue */
}

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

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

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

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

    .page-gdpr__list {
        padding-left: 20px;
    }

    .page-gdpr__hero-section, .page-gdpr__content-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

    .page-gdpr__hero-description {
        font-size: 0.9em;
    }

    .page-gdpr__hero-cta, .page-gdpr__cta {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-gdpr__sub-heading {
        font-size: 1.3em;
    }

    .page-gdpr__text, .page-gdpr__list-item, .page-gdpr__card-text, .page-gdpr__contact-text {
        font-size: 0.95em;
    }
}