.page-gdpr {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
    background-color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

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

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__list-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-gdpr__list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-gdpr__list-title {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__list-item p {
    color: #666666;
    font-size: 1em;
}

.page-gdpr__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

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

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

.page-gdpr__card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

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

.page-gdpr__card-description {
    color: #666666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-gdpr__card-link {
    display: inline-block;
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-gdpr__card-link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__contact-detail {
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 10px;
}

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

.page-gdpr__contact-link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

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

.page-gdpr__button--primary {
    background-color: #000000; /* Main color */
    color: #FFFFFF; /* Text color for main button */
    border: 2px solid #000000;
    margin-right: 15px;
}

.page-gdpr__button--primary:hover {
    background-color: #222222;
    border-color: #222222;
}

.page-gdpr__button--secondary {
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Text color for login button */
    border: 2px solid #FCBC45;
}

.page-gdpr__button--secondary:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

.page-gdpr__related-links {
    background-color: #f0f0f0;
}

.page-gdpr__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.page-gdpr__link-item {
    margin-bottom: 10px;
}

.page-gdpr__link-item a {
    color: #000000;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s ease;
}

.page-gdpr__link-item a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.4em;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
        padding-bottom: 40px;
    }

    .page-gdpr__hero-title {
        font-size: 2em;
    }

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

    .page-gdpr__section {
        margin: 40px auto;
        padding: 20px;
    }

    .page-gdpr__section-title {
        font-size: 1.6em;
    }

    .page-gdpr__section-intro {
        font-size: 0.95em;
    }

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

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

    .page-gdpr__button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-gdpr__button--primary {
        margin-bottom: 15px;
    }

    .page-gdpr__hero-image, .page-gdpr__image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Ensure all images within .page-gdpr are responsive and not too small */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for all content images */
        min-height: 200px;
    }
}