.page-gdpr {
    background-color: #FFFFFF; /* Default background */
    color: #333333; /* Default text color for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding to avoid header overlap */
    background-color: #017439; /* Primary color for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Standard aspect ratio for hero */
    max-height: 675px; /* Limit max height */
}

.page-gdpr__hero-content {
    padding: 40px 20px;
    text-align: center;
    color: #FFFFFF; /* White text on dark green background */
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 4vw, 3rem); /* Example clamp for responsive H1 */
}

.page-gdpr__intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #F0F0F0; /* Slightly off-white for better contrast */
}

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

.page-gdpr__content-section,
.page-gdpr__commitment-section,
.page-gdpr__rights-section,
.page-gdpr__data-usage-section,
.page-gdpr__contact-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-gdpr__commitment-section,
.page-gdpr__rights-section {
    background-color: #F8F8F8; /* Light grey background for sections */
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #017439; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__commitment-item {
    text-align: center;
    padding: 25px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-gdpr__commitment-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__commitment-icon {
    width: 200px; /* Explicitly set to min 200px for content images */
    height: 200px; /* Explicitly set to min 200px for content images */
    object-fit: contain; /* Ensure image content scales within the box */
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Center block element */
}

.page-gdpr__commitment-heading {
    font-size: 1.4rem;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__commitment-text {
    font-size: 0.95rem;
    color: #555555;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-gdpr__rights-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-left: 5px solid #017439;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__rights-heading {
    font-size: 1.25rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__rights-text {
    font-size: 0.95rem;
    color: #555555;
}

.page-gdpr__data-usage-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
    color: #333333;
}

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

.page-gdpr__contact-section {
    text-align: center;
    background-color: #017439; /* Primary color background */
    color: #FFFFFF;
}

.page-gdpr__contact-section .page-gdpr__section-title {
    color: #FFFFFF;
}

.page-gdpr__contact-section .page-gdpr__paragraph {
    color: #F0F0F0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__contact-btn {
    display: inline-block;
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__contact-btn:hover {
    background-color: #a00606; /* Slightly darker red on hover */
    color: #FFFFFF; /* White on hover for better contrast */
}

.page-gdpr__note-text {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #F0F0F0;
}

.page-gdpr__note-text a {
    color: #FFFF00; /* Yellow for links in this section */
    text-decoration: underline;
}

.page-gdpr__note-text a:hover {
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-gdpr__hero-section {
        flex-direction: column;
    }
    .page-gdpr__hero-content {
        padding: 30px 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-gdpr__intro-text {
        font-size: 1rem;
    }
    .page-gdpr__container {
        padding: 30px 15px;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-gdpr__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__hero-image {
        aspect-ratio: 4/3; /* Adjust aspect ratio for mobile hero */
    }
}

/* Ensure no filter is used on images */
.page-gdpr img {
    filter: none;
}