.page-gdpr {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per rule */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    background-color: #2F6BFF; /* Main color for hero background */
    padding-bottom: 40px;
}

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

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF; /* White text on blue background */
}

.page-gdpr__main-title {
    font-size: 2.5em; /* Example, will adjust based on clamp rule if needed */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}
@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Clamp for responsive H1 */
    }
}


.page-gdpr__intro-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* Content Area */
.page-gdpr__content-area {
    padding: 20px 0;
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gdpr__section-title {
    font-size: 2em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2F6BFF; /* Main color for section titles */
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main color */
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main color */
}

.page-gdpr__list-item {
    margin-bottom: 8px;
}

.page-gdpr__link {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Auxiliary color on hover */
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Example max-width, ensure >200px */
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

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

.page-gdpr__button {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-gdpr__button--secondary {
    background-color: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Main color */
    border: 1px solid #D6E2FF; /* Border color */
}

.page-gdpr__button--secondary:hover {
    transform: translateY(-2px);
    background-color: #F4F7FB; /* Background color */
    color: #2F6BFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 20px;
    }
    .page-gdpr__main-title {
        font-size: 2em;
    }
    .page-gdpr__intro-text {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__button {
        width: 80%;
        max-width: 300px;
    }
    /* Mobile content image constraint */
    .page-gdpr__content-image,
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all images within .page-gdpr meet min size requirements */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space without distortion */
}
/* Ensure no filter is applied to images */
.page-gdpr img {
    filter: none !important;
}

/* Mobile image overflow prevention */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr {
        overflow-x: hidden;
    }
}