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

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

.page-gdpr__section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

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

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

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    background-color: rgba(17, 39, 27, 0.8);
    padding: 30px;
    border-radius: 10px;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--page-gdpr-text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    color: var(--page-gdpr-text-main);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-gdpr__card-title,
.page-gdpr__feature-title {
    font-size: clamp(1.2em, 2.5vw, 1.6em);
    font-weight: 600;
    color: var(--page-gdpr-primary);
    margin-bottom: 10px;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-main);
}

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

.page-gdpr__list-item {
    font-size: 1.05em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__list-item::before {
    content: '•';
    color: var(--page-gdpr-secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-gdpr__btn-primary {
    background: var(--page-gdpr-button-gradient);
    color: var(--page-gdpr-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__btn-secondary:hover {
    background-color: rgba(34, 199, 104, 0.1);
    transform: translateY(-2px);
}

.page-gdpr__btn--center {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
    max-width: 100%;
}

.page-gdpr__btn--large {
    padding: 16px 40px;
    font-size: 1.2em;
}

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

.page-gdpr__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-gdpr__card {
    background-color: var(--page-gdpr-card-bg);
    color: var(--page-gdpr-text-main);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--page-gdpr-border);
}

.page-gdpr__feature-item {
    background-color: var(--page-gdpr-card-bg);
    color: var(--page-gdpr-text-main);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--page-gdpr-border);
}

.page-gdpr__feature-description {
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
    max-width: 400px;
}

.page-gdpr__contact-info {
    background-color: var(--page-gdpr-card-bg);
    border: 1px solid var(--page-gdpr-border);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.page-gdpr__contact-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__contact-item a {
    color: var(--page-gdpr-secondary);
    text-decoration: none;
}

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

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

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

.page-gdpr__faq-item {
    background-color: var(--page-gdpr-background);
    border: 1px solid var(--page-gdpr-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    cursor: pointer;
    background-color: var(--page-gdpr-card-bg);
    border-bottom: 1px solid var(--page-gdpr-divider);
}

.page-gdpr__faq-question:hover {
    background-color: rgba(34, 199, 104, 0.1);
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
    border-bottom: none;
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--page-gdpr-secondary);
    margin-left: 20px;
}

.page-gdpr__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__faq-answer p {
    margin-bottom: 10px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: '−';
}

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

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

.page-gdpr__conclusion {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

@media (max-width: 992px) {
    .page-gdpr__image--right {
        float: none;
        margin: 30px auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__section {
        padding: 40px 15px;
    }

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

    .page-gdpr__hero-content {
        margin-top: -60px;
        padding: 20px;
    }

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

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

    .page-gdpr__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }

    .page-gdpr__card-title,
    .page-gdpr__feature-title {
        font-size: clamp(1.1em, 4vw, 1.4em);
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .page-gdpr__grid--2-cols {
        grid-template-columns: 1fr;
    }

    .page-gdpr__image {
        margin-bottom: 20px;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-gdpr img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
      min-width: 200px !important;
      min-height: 200px !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container,
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }

    .page-gdpr__video-section {
        padding-top: 10px !important;
    }

    .page-gdpr__cta-button,
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-gdpr__image--right {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
}

.page-gdpr video,
.page-gdpr__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__video-section,
.page-gdpr__video-container,
.page-gdpr__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}