.page-gdpr {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    padding-top: 10px; /* Small top padding for first section */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    padding: 20px;
    text-align: center;
    background-color: #111111;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 15px;
    color: #F2C14E;
}

.page-gdpr__hero-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-gdpr__hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-gdpr__content-area, .page-gdpr__section, .page-gdpr__related-links {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-gdpr__section-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: #FFD36B;
    font-weight: bold;
}

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

.page-gdpr__link {
    color: #FFD36B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #F2C14E;
}

.page-gdpr__flex-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}

.page-gdpr__flex-container--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 200px; /* Ensure image wrapper has a min-width */
}

.page-gdpr__section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-gdpr__list-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

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

.page-gdpr__section--alt-bg {
    background-color: #111111;
    padding: 40px 20px;
    border-radius: 8px;
}

.page-gdpr__contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    min-width: 200px;
    text-align: center;
}

.page-gdpr__contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-gdpr__cta-text {
    margin-top: 20px;
    font-size: 0.95rem;
}

.page-gdpr__policy-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-gdpr__policy-item a {
    display: block;
    background-color: #111111;
    border: 1px solid #3A2A12;
    padding: 10px 20px;
    border-radius: 5px;
    color: #FFF6D6;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-gdpr__policy-item a:hover {
    background-color: #F2C14E;
    border-color: #F2C14E;
    color: #111111;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__flex-container {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__flex-container--reverse {
        flex-direction: column;
    }

    .page-gdpr__hero-image, .page-gdpr__section-image {
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__image-wrapper {
        width: 100%;
    }

    .page-gdpr__list {
        width: 100%;
    }

    .page-gdpr__policy-list {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__policy-item a {
        width: 100%;
        max-width: 300px; /* Constrain width on small screens */
    }
}

/* Ensure content area images do not cause horizontal scroll and are at least 200px wide */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__section-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-gdpr__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
}

/* CSS for content area images, ensuring min-width 200px for all img elements within .page-gdpr */
.page-gdpr img:not(.shared-header img, .shared-footer img) {
    min-width: 200px; /* Applies to all images in content area */
    min-height: 200px; /* Applies to all images in content area */
}

/* Override for specific elements if they need to be smaller, but this should be avoided as per rules */
/* Example of a problematic rule that would be flagged: */
/* .page-gdpr__small-icon { width: 80px; height: 80px; } */
/* This is explicitly forbidden by the rules if it selects content area images. */