:root {
    --primary-color: #113B7A;
    --accent-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light backgrounds */
    background-color: var(--deep-navy); /* Body background, inherited from shared */
}

.page-gdpr__dark-bg {
    background-color: var(--deep-navy);
    color: var(--text-main);
}

.page-gdpr__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-gdpr__section {
    padding: 60px 0;
    text-align: center;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    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 */
    overflow: hidden;
}

.page-gdpr__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-image {
    width: 100%;
    margin-top: 30px;
}

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.page-gdpr__hero-content h1 {
    color: var(--text-main);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.page-gdpr__hero-content p {
    color: var(--text-secondary);
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Headings */
.page-gdpr h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-gdpr h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.page-gdpr__dark-bg h2,
.page-gdpr__dark-bg h3 {
    color: var(--text-main);
}

.page-gdpr__light-bg h2,
.page-gdpr__light-bg h3 {
    color: var(--primary-color);
}

/* Paragraphs and Lists */
.page-gdpr p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
}

.page-gdpr__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-size: 1.2em;
    line-height: 1;
}

.page-gdpr__dark-bg p,
.page-gdpr__dark-bg .page-gdpr__list li {
    color: var(--text-secondary);
}

.page-gdpr__light-bg p,
.page-gdpr__light-bg .page-gdpr__list li {
    color: #333333;
}

.page-gdpr a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr a:hover {
    text-decoration: underline;
}

/* Image Styling */
.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__card {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #e0e0e0;
}

.page-gdpr__dark-bg .page-gdpr__card {
    background-color: var(--card-bg);
    color: var(--text-main);
    border-color: var(--border-color);
}

.page-gdpr__card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.page-gdpr__dark-bg .page-gdpr__card h3 {
    color: var(--gold-color);
}

.page-gdpr__card p {
    font-size: 1em;
    margin-bottom: 0;
    color: inherit;
}

/* FAQ Section */
details.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
    text-align: left;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
    background: #f5f5f5;
}

.page-gdpr__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);
}

.page-gdpr__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer p {
    color: #333333;
}

/* Global image responsive */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 15px;
    }

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

    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Ensure small top padding on mobile */
        padding-bottom: 40px;
    }

    .page-gdpr__hero-content h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

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

    .page-gdpr__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-gdpr h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-gdpr h3 {
        font-size: 1.3em;
    }

    .page-gdpr p,
    .page-gdpr__list li {
        font-size: 1em;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-gdpr__card {
        padding: 25px;
    }

    .page-gdpr__image {
        margin: 30px auto 15px auto;
    }

    details.page-gdpr__faq-item summary.page-gdpr__faq-question {
        padding: 15px;
    }

    .page-gdpr__faq-qtext {
        font-size: 15px;
    }

    .page-gdpr__faq-toggle {
        font-size: 20px;
        width: 24px;
    }

    details.page-gdpr__faq-item .page-gdpr__faq-answer {
        padding: 0 15px 15px;
    }

    /* Enforce image responsive for all images within .page-gdpr */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__list {
        padding-left: 0;
    }

    .page-gdpr__list li {
        padding-left: 25px;
    }
}