:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --dark-bg-1: #0d0d0d; /* From shared.css, assumed dark */
    --dark-bg-2: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-color: #e0e0e0;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Inherited from body */
    padding-top: 120px; /* Desktop: Adjust for fixed header */
}

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

.page-gdpr__hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg-2) 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__main-title {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.3em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-gdpr p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-gdpr a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-gdpr__cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

.page-gdpr__card {
    background-color: var(--dark-bg-2);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-light);
}

.page-gdpr__list--white li {
    color: var(--text-light);
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__light-bg {
    background-color: var(--dark-bg-1);
    color: var(--text-light);
}

.page-gdpr__dark-section {
    background-color: var(--dark-bg-2);
    color: var(--text-light);
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-light);
}

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

.page-gdpr__final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description, .page-gdpr p, .page-gdpr li {
        font-size: 1em;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-gdpr__card-title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: 100px; /* Mobile: Adjust for fixed header */
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr__hero-section {
        padding: 60px 0;
    }
    .page-gdpr__main-title {
        font-size: 2.2em;
        line-height: 1.3;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-gdpr__sub-title {
        font-size: 1.5em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__card {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .page-gdpr__list,
    .page-gdpr__contact-list {
        padding-left: 15px;
    }
    .page-gdpr__list li,
    .page-gdpr__contact-list li {
        font-size: 1em;
    }
    .page-gdpr__image {
        margin: 30px auto;
    }

    /* Buttons responsive */
    .page-gdpr__cta-button,
    .page-gdpr__cta-button--large {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important;
        font-size: 1em !important;
    }
    .page-gdpr__hero-section .page-gdpr__cta-button {
        margin-top: 20px;
    }

    /* Image responsive */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        display: block !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: hidden !important;
    }
}