.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Main content background is transparent, letting body background show */
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    color: #ffffff;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    color: #26A9E0; /* Brand color for main title */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-gdpr__btn-primary {
    display: inline-block;
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box; /* For responsive buttons */
    white-space: normal; /* For responsive buttons */
    word-wrap: break-word; /* For responsive buttons */
}

.page-gdpr__btn-primary:hover {
    background-color: #1e87c0; /* Darker shade on hover */
}

.page-gdpr__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0; /* Brand color for text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #26A9E0;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box; /* For responsive buttons */
    white-space: normal; /* For responsive buttons */
    word-wrap: break-word; /* For responsive buttons */
}

.page-gdpr__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-gdpr__section {
    padding: 60px 0;
    box-sizing: border-box;
}

.page-gdpr__introduction,
.page-gdpr__rights,
.page-gdpr__contact,
.page-gdpr__faq,
.page-gdpr__conclusion {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
    margin-bottom: 20px;
}

.page-gdpr__principles,
.page-gdpr__implementation {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly darker background for variety */
    margin-bottom: 20px;
}

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

.page-gdpr__heading {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__sub-heading {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-gdpr p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-gdpr strong {
    color: #26A9E0;
}

.page-gdpr a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-gdpr a:hover {
    color: #1e87c0;
}

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

.page-gdpr__card {
    background-color: rgba(255, 255, 255, 0.15); /* Light semi-transparent background for cards */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    color: #ffffff; /* Ensure light text for cards */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__card-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.page-gdpr__list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.page-gdpr__list li:before {
    content: '✓';
    color: #26A9E0;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.page-gdpr__row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__col {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-gdpr__contact-info,
.page-gdpr__complaint-process {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #26A9E0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-gdpr__faq-qtext {
    font-size: 1.1em;
    color: #ffffff;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    color: #26A9E0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-gdpr__faq-answer {
    padding: 20px;
    padding-top: 0;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
}

.page-gdpr__cta-button {
    margin-top: 30px;
}

.page-gdpr__footer-note {
    text-align: center;
    font-size: 0.9em;
    color: #aaaaaa;
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__heading {
        font-size: 2em;
    }
    .page-gdpr__sub-heading {
        font-size: 1.5em;
    }
    .page-gdpr__hero-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    }
    .page-gdpr__hero-content {
        padding: 20px;
    }
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-gdpr__sub-heading {
        font-size: 1.3em;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__row {
        flex-direction: column;
        gap: 20px;
    }
    .page-gdpr__col {
        min-width: unset;
        width: 100%;
    }

    /* Mobile image responsive adaptation */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__row,
    .page-gdpr__col,
    .page-gdpr__contact-info,
    .page-gdpr__complaint-process,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Add padding to prevent content touching edges */
        padding-right: 15px; /* Add padding to prevent content touching edges */
        overflow: hidden !important; /* Ensure no horizontal overflow */
    }
    .page-gdpr__hero-section {
        padding-left: 0 !important; /* Hero section can be full width */
        padding-right: 0 !important;
    }
    .page-gdpr__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Mobile button responsive adaptation */
    .page-gdpr__cta-button,
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px; /* Ensure button text has padding */
        padding-right: 15px;
        text-align: center; /* Center button text */
    }
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }
}