.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #100224; /* Dark background as per WOW88 style */
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding for first section */
}

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

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

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

.page-gdpr__main-title {
    color: #FFFFFF; /* White text for dark background */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, otherwise browser default */
    font-size: clamp(2rem, 4vw, 3rem); /* Example clamp for responsive H1 */
}

.page-gdpr__hero-description {
    color: #E0E0E0; /* Lighter text for description */
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: transform 0.2s ease-in-out;
    min-width: 180px; /* Ensure sufficient width */
    text-align: center;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
}

.page-gdpr__section-spacing {
    padding: 60px 0;
}

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

.page-gdpr__introduction-section {
    background-color: #F5F7FA; /* Light background */
    color: #333333; /* Main text color */
}

.page-gdpr__commitment-section,
.page-gdpr__rights-section,
.page-gdpr__data-collection-section,
.page-gdpr__related-policies-section,
.page-gdpr__contact-section {
    background-color: #100224; /* Dark background */
    color: #E0E0E0; /* Light text color */
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: center;
    color: #E53935; /* Primary color for titles */
}

.page-gdpr__introduction-section .page-gdpr__section-title {
    color: #333333; /* Dark title for light section */
}

.page-gdpr__paragraph {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-gdpr__grid--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__content-block {
    flex: 1;
}

.page-gdpr__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

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

.page-gdpr__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-gdpr__list-item::before {
    content: '✅'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9em;
    color: #FF5A4F; /* Accent color */
}

.page-gdpr__list-item strong {
    color: #FF5A4F; /* Accent color for strong text */
}

.page-gdpr__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.page-gdpr__link-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #E53935; /* Primary color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
    margin-top: 15px;
}

.page-gdpr__link-button:hover {
    background-color: #FF5A4F; /* Auxiliary color on hover */
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
}

.page-gdpr__contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-gdpr__contact-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-gdpr__grid {
        flex-direction: column;
    }

    .page-gdpr__grid--reverse {
        flex-direction: column; /* Still column on mobile */
    }

    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

    .page-gdpr__section-spacing {
        padding: 40px 0;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem); /* Adjust H1 for smaller screens */
    }

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

    .page-gdpr__list--columns {
        grid-template-columns: 1fr; /* Single column for lists on mobile */
    }

    /* Ensure content area images are responsive */
    .page-gdpr__container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__hero-content {
        padding: 0 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem); /* Further adjust H1 for very small screens */
    }

    .page-gdpr__cta-button {
        width: 100%;
        max-width: 300px; /* Constrain full width button */
        margin: 0 auto;
    }

    .page-gdpr__image {
        min-width: unset; /* Remove min-width for very small screens if needed, let max-width: 100% handle it */
        min-height: unset;
    }
}

/* Ensure images within .page-gdpr are constrained on mobile */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}