:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

.page-gdpr {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Default text color for dark body background */
    background-color: var(--background-color);
    line-height: 1.6;
}

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

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

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

.page-gdpr__main-title {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: rgba(255, 243, 230, 0.8);
    margin-bottom: 30px;
}

.page-gdpr__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 0 15px var(--glow-color);
}

.page-gdpr__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-gdpr__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--background-color);
    box-shadow: 0 0 15px var(--glow-color);
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr strong {
    color: var(--secondary-color);
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__dark-section {
    background-color: var(--card-bg);
    padding: 60px 0;
}

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

.page-gdpr__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.2);
}

.page-gdpr__list-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-gdpr__list-item p {
    color: rgba(255, 243, 230, 0.9);
    font-size: 1em;
    line-height: 1.6;
}

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

.page-gdpr__right-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 165, 58, 0.3);
}

.page-gdpr__right-card h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-gdpr__right-card p {
    color: rgba(255, 243, 230, 0.85);
    font-size: 0.95em;
}

.page-gdpr__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-gdpr__faq-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-gdpr__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 600;
    list-style: none;
    outline: none;
    transition: background-color 0.3s ease;
}

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

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: var(--primary-color);
}

.page-gdpr__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    margin-left: 15px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    color: rgba(255, 243, 230, 0.85);
    font-size: 1em;
    line-height: 1.6;
}

.page-gdpr__faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-gdpr__contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.page-gdpr__contact-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* --- General Image & Container Responsive Styles --- */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-gdpr__section,
.page-gdpr__card,
.page-gdpr__container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }

    .page-gdpr__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-gdpr__hero-cta,
    .page-gdpr__contact-cta {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-gdpr__content-area,
    .page-gdpr__dark-section {
        padding: 40px 15px;
    }

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

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

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

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

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

    .page-gdpr__right-card h3 {
        font-size: 1.4em;
    }

    .page-gdpr__faq-item summary {
        font-size: 1.1em;
        padding: 18px 20px;
    }

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

    .page-gdpr__faq-answer {
        padding: 0 20px 18px 20px;
        font-size: 0.95em;
    }

    /* --- Mobile Image Adaptations --- */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !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;
        overflow-x: hidden !important;
    }

    /* Ensure content containers do not cause horizontal scroll */
    .page-gdpr {
        overflow-x: hidden;
    }
}

/* --- Additional styles for larger screens if needed, e.g., for padding adjustments --- */
@media (min-width: 1200px) {
    .page-gdpr__hero-section {
        padding-bottom: 60px;
    }

    .page-gdpr__main-title {
        font-size: 3.5em;
    }

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