.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F3F8FF; /* Text Main */
    background-color: var(--deep-navy); /* From shared.css, which is #08162B */
}

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

.page-gdpr__container--center {
    text-align: center;
}

.page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #08162B; /* Deep Navy */
}

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

.page-gdpr__hero-title {
    font-size: clamp(2.2em, 4vw, 3.2em);
    font-weight: bold;
    line-height: 1.2;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 20px;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
    color: #F3F8FF; /* Text Main */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__section:nth-of-type(even) {
    background-color: #10233F; /* Card BG */
}

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

.page-gdpr__subsection-title {
    font-size: clamp(1.4em, 2.5vw, 2em);
    color: #F3F8FF; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-gdpr__image-wrapper {
    margin: 40px auto;
    text-align: center;
    max-width: 900px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__right-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__right-item .page-gdpr__subsection-title {
    margin-top: 0;
    font-size: 1.3em;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-gdpr__list li strong {
    color: #F3F8FF; /* Text Main */
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    font-weight: bold;
    color: #F3F8FF; /* Text Main */
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__link {
    color: #1D5FD1; /* Auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #4FA8FF; /* Glow */
    text-decoration: underline;
}

.page-gdpr__button-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-gdpr__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-gdpr__faq-item summary {
    list-style: none;
}

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

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: #F3F8FF; /* Text Main */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(29, 95, 209, 0.1); /* Slight hover effect with Auxiliary color */
}

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

.page-gdpr__faq-answer {
    padding: 0 20px 20px;
    color: #AFC4E8; /* Text Secondary */
    line-height: 1.6;
    font-size: 0.95em;
}

.page-gdpr__cta-final-section {
    padding-bottom: 80px;
}

@media (max-width: 1024px) {
    .page-gdpr__hero-content-wrapper {
        margin-bottom: 30px;
    }

    .page-gdpr__hero-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }

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

    .page-gdpr__section-title {
        font-size: clamp(1.6em, 3.5vw, 2.5em);
        margin-bottom: 40px;
    }

    .page-gdpr__subsection-title {
        font-size: clamp(1.3em, 2.8vw, 1.8em);
        margin-top: 30px;
    }

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

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-gdpr__hero-content-wrapper {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-gdpr__hero-title {
        font-size: 2em !important;
        text-align: left;
    }

    .page-gdpr__hero-description {
        font-size: 1em !important;
        text-align: left;
    }

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

    .page-gdpr__hero-image-wrapper {
        margin-top: 20px;
    }

    .page-gdpr__hero-image,
    .page-gdpr__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
    }

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

    .page-gdpr__section-title {
        font-size: 1.8em !important;
        margin-bottom: 30px;
    }

    .page-gdpr__subsection-title {
        font-size: 1.3em !important;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-gdpr__text-block {
        font-size: 0.95em;
    }

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

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

    .page-gdpr__right-item {
        padding: 20px;
    }

    .page-gdpr__list {
        margin-left: 20px;
    }

    .page-gdpr__contact-info {
        font-size: 1em;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .page-gdpr__button-group {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px;
    }

    .page-gdpr__faq-question {
        font-size: 1em !important;
        padding: 15px;
    }

    .page-gdpr__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9em;
    }

    .page-gdpr__faq-toggle {
        font-size: 1.2em;
    }

    .page-gdpr__cta-final-section {
        padding-bottom: 40px;
    }
}