.page-gdpr {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--background-color, #F4F7FB); /* Default to #F4F7FB if not defined */
    color: var(--text-main-color, #1F2D3D);
    font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
    position: relative;
    max-width: 1390px; /* Aligns with boxed layout */
    margin: 0 auto 40px auto;
    overflow: hidden;
    border-radius: 12px;
    background-color: #0a0909; /* Dark background for hero */
    display: flex; /* For image above content */
    flex-direction: column; /* Image above content */
    align-items: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* Ensure no text overlays */
    min-width: unset;
    min-height: unset;
}

.page-gdpr__hero-content {
    position: relative; /* Not absolute to avoid overlay */
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    z-index: 1; /* Ensure content is above any subtle background elements if present */
    color: #FFFFFF; /* White text on dark hero background */
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* No fixed font-size, rely on responsive scaling */
}

.page-gdpr__intro-text {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gdpr__content-area {
    max-width: 1390px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--background-color, #F4F7FB);
    border-radius: 8px;
}

.page-gdpr__container {
    max-width: 960px; /* Content narrower within the area */
    margin: 0 auto;
    padding: 20px;
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 1.8rem; /* 28.8px */
    font-weight: bold;
    color: var(--text-main-color, #1F2D3D);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-gdpr__paragraph {
    font-size: 1rem; /* 16px */
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-main-color, #1F2D3D);
}

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

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

.page-gdpr__list-item::before {
    content: '✓'; /* Checkmark for list items */
    color: #d6d604; /* Yellow-green accent */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 10px 10px 0;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-gdpr__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
}

.page-gdpr__button--primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-gdpr__button--secondary:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 30px 15px;
    }
    .page-gdpr__main-title {
        font-size: 2.2rem; /* Adjust H1 for tablet */
    }
    .page-gdpr__section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: 5px;
    }
    .page-gdpr__hero-section {
        margin-bottom: 30px;
        border-radius: 0;
    }
    .page-gdpr__hero-content {
        padding: 20px 10px;
    }
    .page-gdpr__main-title {
        font-size: 1.8rem; /* Adjust H1 for mobile */
        margin-bottom: 15px;
    }
    .page-gdpr__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-gdpr__content-area {
        padding: 10px;
    }
    .page-gdpr__container {
        padding: 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.95rem;
    }
    .page-gdpr__button {
        display: block;
        width: 100%;
        margin: 10px 0;
        min-width: unset;
    }
    /* Mobile image constraint */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content images are not small */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}