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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background-color: #f0f8ff; /* Light background for hero */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    margin-top: 30px;
    padding: 0 15px;
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #26A9E0; /* Brand color for main title */
    margin-bottom: 20px;
    max-width: 100%; /* Ensure it doesn't overflow */
    font-size: clamp(2em, 5vw, 2.8em);
}

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

.page-gdpr__btn-primary {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
    background-color: #1e87b9;
}

.page-gdpr__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__sub-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333333;
}

/* Section styles */
.page-gdpr__content-section,
.page-gdpr__rights-section,
.page-gdpr__contact-section,
.page-gdpr__cta-section {
    padding: 80px 0;
}

.page-gdpr__principles-section,
.page-gdpr__implementation-section,
.page-gdpr__faq-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Brand color background */
    color: #ffffff; /* White text for brand color background */
}

.page-gdpr__principles-section .page-gdpr__section-title,
.page-gdpr__implementation-section .page-gdpr__section-title,
.page-gdpr__faq-section .page-gdpr__section-title {
    color: #ffffff;
}

.page-gdpr__principles-section .page-gdpr__text-block,
.page-gdpr__implementation-section .page-gdpr__text-block,
.page-gdpr__faq-section .page-gdpr__text-block {
    color: #f0f0f0;
}

.page-gdpr__principles-section .page-gdpr__card,
.page-gdpr__faq-item {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
}

.page-gdpr__principles-section .page-gdpr__card-title,
.page-gdpr__implementation-section .page-gdpr__implementation-title,
.page-gdpr__faq-item .page-gdpr__faq-qtext {
    color: #ffffff;
}

.page-gdpr__principles-section .page-gdpr__card-text,
.page-gdpr__implementation-section .page-gdpr__implementation-description,
.page-gdpr__faq-item .page-gdpr__faq-answer p {
    color: #f0f0f0;
}

/* Cards Grid */
.page-gdpr__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: #333333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-gdpr__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

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

.page-gdpr__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1;
}

/* Rights List */
.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

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

.page-gdpr__rights-title {
    font-size: 1.2em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__rights-description {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
}

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

/* Implementation List */
.page-gdpr__implementation-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-gdpr__implementation-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-left: 5px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
}

.page-gdpr__implementation-title {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__implementation-description {
    font-size: 0.95em;
    color: #f0f0f0;
    line-height: 1.6;
}

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

.page-gdpr__update-date {
    font-size: 0.9em;
    color: #777777;
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-gdpr__faq-list {
    margin-top: 40px;
}

.page-gdpr__faq-item {
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
}

.page-gdpr__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: #ffffff;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #ffffff;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: '−';
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

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

.page-gdpr__cta-section .page-gdpr__btn-primary {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-gdpr__rights-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section,
    .page-gdpr__content-section,
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__implementation-section,
    .page-gdpr__contact-section,
    .page-gdpr__faq-section,
    .page-gdpr__cta-section {
        padding: 40px 0;
    }
    .page-gdpr__hero-content {
        margin-top: 20px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.6em, 7vw, 2.2em);
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-gdpr__sub-title {
        font-size: 1.4em;
        margin-top: 20px;
    }
    .page-gdpr__text-block,
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__rights-item,
    .page-gdpr__implementation-item {
        padding: 20px;
    }
    .page-gdpr__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px;
    }

    /* Mobile specific image/video/button rules */
    .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__hero-image-wrapper,
    .page-gdpr__rights-image,
    .page-gdpr__implementation-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .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;
        padding-right: 15px;
        margin-bottom: 10px; /* Add some space between stacked buttons */
    }

    .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;
        flex-direction: column;
    }
    .page-gdpr__hero-section {
        padding-top: 10px !important;
    }
}