.page-gdpr {
    font-family: Arial, sans-serif;
    color: #FFFFFF; /* White text on dark background */
    background-color: #100224; /* Deep purple-black background */
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile, will change for desktop */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Minimal top padding, more bottom padding */
    background-color: #0d011f; /* Slightly darker background for hero */
    margin-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    position: relative;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: #26A9E0; /* Primary color for H1 */
    margin-bottom: 20px;
}

.page-gdpr__hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.page-gdpr__cta-group {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    gap: 15px;
    max-width: 400px; /* Limit button group width */
    margin: 0 auto;
}

.page-gdpr__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 44px; /* Ensure touch target size */
    box-sizing: border-box;
    width: 100%; /* Full width on mobile */
}

.page-gdpr__button--primary {
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
}

.page-gdpr__button--primary:hover {
    background-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
}

.page-gdpr__button--secondary:hover {
    background-color: #cc6a06;
    transform: translateY(-2px);
}

.page-gdpr__button--contact {
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    margin-top: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__button--contact:hover {
    background-color: #cc6a06;
    transform: translateY(-2px);
}

.page-gdpr__section {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: #1a0333; /* Slightly lighter than main background for sections */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #26A9E0;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.page-gdpr__text-block {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-gdpr__link {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #4ac7f7;
    text-decoration: underline;
}

.page-gdpr__grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 30px;
    margin-top: 20px;
}

.page-gdpr__grid-item {
    background-color: #220542; /* Even lighter background for grid items */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure images are responsive */
    display: block;
    margin: 0 auto 15px;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__image--small {
    max-width: 400px; /* Smaller max-width for content images */
    height: 300px; /* Fixed height for consistency, with object-fit */
}

.page-gdpr__item-title {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__item-description {
    font-size: 0.95rem;
    color: #c0c0c0;
}

.page-gdpr__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__list-item strong {
    color: #26A9E0;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

.page-gdpr__contact-text {
    margin-bottom: 10px;
}

.page-gdpr__faq-item {
    background-color: #220542;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-question {
    font-size: 1.2rem;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__faq-answer {
    font-size: 0.95rem;
    color: #c0c0c0;
}

.page-gdpr__image--faq {
    max-width: 600px;
    height: 450px;
    margin: 0 auto 30px;
    display: block;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-gdpr__hero-section {
        padding: 20px 40px 60px;
    }

    .page-gdpr__hero-content {
        max-width: 1000px; /* Wider content for desktop */
    }

    .page-gdpr__cta-group {
        flex-direction: row; /* Row for desktop */
        max-width: none;
        width: auto;
    }

    .page-gdpr__button {
        width: auto; /* Auto width for desktop buttons */
        min-width: 200px;
    }

    .page-gdpr__grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for principles */
    }

    .page-gdpr__section--rights .page-gdpr__grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns for rights */
    }
}

@media (min-width: 1024px) {
    .page-gdpr__section {
        padding: 40px;
    }

    .page-gdpr__grid {
        grid-template-columns: repeat(2, 1fr); /* Still 2 for principles, could be 3 for wider screens */
    }
}

/* Mobile specific rules for image overflow and content area */
@media (max-width: 768px) {
    .page-gdpr__hero-image,
    .page-gdpr__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }

    /* Ensure content area images don't cause horizontal scroll */
    .page-gdpr__section img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr {
        overflow-x: hidden;
    }

    .page-gdpr__section-title {
        padding: 0 10px; /* Add padding to titles to prevent overflow on very small screens */
    }
    .page-gdpr__image--faq {
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Enforce content area image size minimums for all devices */
.page-gdpr__section img {
    min-width: 200px;
    min-height: 200px;
}
/* This rule targets all img within .page-gdpr__section, ensuring no small icons are used */
.page-gdpr__section img {
    width: 100%; /* Make them fill their container */
    height: auto;
    max-width: 100%;
    object-fit: cover; /* Ensure aspect ratio is maintained */
}
/* Overriding specific small image sizes if needed, ensuring they are not too small */
.page-gdpr__image--small {
    width: 100%;
    height: 300px; /* Fixed height for consistency, with object-fit */
    max-width: 400px; /* Max width for these specific images */
}