:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background: #F4F7FB;
    --text-main: #1F2D3D;
    --text-black: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-gdpr {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    padding-top: 10px; /* Small top padding for first section, body handles header offset */
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-black);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-gdpr__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 20px;
}

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

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 25px;
    padding-top: 10px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main);
}

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

.page-gdpr__list-item {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-main);
}

.page-gdpr__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9em;
    top: 2px;
}

.page-gdpr__list-item strong {
    color: var(--text-black);
}

.page-gdpr__button-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.page-gdpr__button--primary {
    background: var(--button-gradient);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__button--secondary:hover {
    background: var(--primary-color);
    color: var(--card-bg);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .page-gdpr__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .page-gdpr__hero-section {
        margin-bottom: 20px;
    }

    .page-gdpr__container {
        padding: 20px;
    }

    .page-gdpr__button-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 280px;
    }

    /* Enforce image responsiveness for content area */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are not too small as per rule */
/* This rule applies to all images within .page-gdpr, including hero */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}