:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* --- Base Styles --- */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color, will be overridden by section-specific colors */
    background-color: var(--background); /* Default background, will be overridden by section-specific colors */
}

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

.page-gdpr__section-title {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.page-gdpr__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr__section-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
    filter: none !important;
}

/* --- Color Contrast & Theming --- */
.page-gdpr__dark-bg {
    background-color: var(--background); /* #08160F */
    color: var(--text-main); /* #F2FFF6 */
    padding: 60px 0;
}

.page-gdpr__light-bg {
    background-color: var(--card-bg); /* #11271B */
    color: var(--text-main); /* #F2FFF6 */
    padding: 60px 0;
}

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__principle-title,
.page-gdpr__dark-bg .page-gdpr__right-title {
    color: var(--gold); /* #F2C14E */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__principle-title,
.page-gdpr__light-bg .page-gdpr__right-title {
    color: var(--gold); /* #F2C14E */
}

.page-gdpr a {
    color: var(--gold); /* #F2C14E */
    text-decoration: underline;
}

.page-gdpr a:hover {
    color: var(--glow); /* #57E38D */
    text-decoration: none;
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: var(--background);
    text-align: center;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none !important;
}

.page-gdpr__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    box-sizing: border-box;
    z-index: 1;
    color: var(--text-main);
}

.page-gdpr__main-title {
    font-size: clamp(2.5em, 6vw, 3.5em);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--gold);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* --- CTA Button Styles --- */
.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__btn-secondary:hover {
    background-color: var(--deep-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__principle-item,
.page-gdpr__right-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--divider);
}

.page-gdpr__principle-title,
.page-gdpr__right-title {
    font-size: 1.5em;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__principle-description,
.page-gdpr__right-description {
    font-size: 1em;
    color: var(--text-secondary);
}

/* --- Security Section --- */
.page-gdpr__security-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr__security-item {
    background-color: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--deep-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

.page-gdpr__security-item strong {
    color: var(--text-main);
}

/* --- CTA Section --- */
.page-gdpr__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__cta-section .page-gdpr__section-title {
    margin-bottom: 40px;
    color: var(--gold);
}

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

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

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 30px 20px;
    }

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

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

    .page-gdpr__principles-list,
    .page-gdpr__rights-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

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

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

    .page-gdpr__hero-section {
        min-height: 400px;
    }

    .page-gdpr__hero-content {
        padding: 20px 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-gdpr__section-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
    }

    .page-gdpr__principles-list,
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    /* Images responsive */
    .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 {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .page-gdpr__video-section {
      padding-top: 10px !important;
    }

    /* Buttons responsive */
    .page-gdpr__cta-button,
    .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;
    }
    
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container,
    .page-gdpr__button-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-direction: column !important;
      gap: 10px;
      overflow: hidden !important;
    }
}