.page-gdpr {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: 'Roboto', sans-serif; /* Assuming Roboto or similar sans-serif is available */
    padding-top: 10px; /* Small top padding to avoid header overlap, body handles the main offset */
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    background-color: #100224; /* Dark purple from Hero/Jackpot section */
    overflow: hidden; /* Ensure no horizontal overflow */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure image wrapper doesn't overflow */
    margin-bottom: 20px; /* Space between image and content */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* Or 1920/1080 */
    min-height: 200px; /* Ensure minimum size */
}

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

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E; /* Primary color for H1 */
    margin-bottom: 15px;
    max-width: 100%; /* Ensure H1 doesn't overflow */
    word-break: break-word; /* Prevent long words from overflowing */
}

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

.page-gdpr__section {
    padding: 60px 20px;
    border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Clamp for H2 */
    font-weight: 600;
    color: #F2C14E; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.page-gdpr__image-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-gdpr__content-image {
    width: 100%;
    max-width: 800px; /* Max width for content images */
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum image width */
    min-height: 200px; /* Minimum image height */
}

.page-gdpr__content-image--center {
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__list-item {
    background-color: #111111; /* Card BG color */
    border-left: 4px solid #F2C14E; /* Primary color accent */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main color */
}

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

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

.page-gdpr__card {
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #F2C14E; /* Primary color for card titles */
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main color */
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-gdpr__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for contrast */
    margin-top: 30px;
}

.page-gdpr__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-gdpr__policy-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.page-gdpr__policy-item a {
    display: block;
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #FFD36B; /* Secondary color for links */
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__policy-item a:hover {
    background-color: #F2C14E; /* Primary color on hover */
    color: #111111; /* Dark text for contrast */
    border-color: #F2C14E;
}

/* Responsive adjustments */
@media (max-width: 850px) { /* Tablet and smaller */
    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

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

    .page-gdpr__section {
        padding: 40px 15px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 6vw, 2rem); /* Adjust H2 for smaller screens */
        margin-bottom: 30px;
    }

    .page-gdpr__image-text-block {
        flex-direction: column;
    }

    .page-gdpr__policy-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) { /* Mobile */
    .page-gdpr__hero-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .page-gdpr__hero-description {
        font-size: 1em;
    }

    .page-gdpr__section {
        padding: 30px 10px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        margin-bottom: 25px;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .page-gdpr__card {
        padding: 20px;
    }

    .page-gdpr__card-title {
        font-size: 1.1em;
    }

    .page-gdpr__btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-gdpr__policy-item a {
        width: 100%;
        max-width: 300px; /* Constrain width for single column links */
    }
}