:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --background-color: #140C0C;
    --card-background-color: #2A1212;
    --text-main-color: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

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

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    background-color: var(--background-color);
}

.page-gdpr__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-gdpr__hero-content {
    text-align: center;
    width: 100%;
}

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

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #FFC570 0%, #E87A24 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__content-section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.page-gdpr__dark-bg {
    background-color: var(--card-background-color);
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: var(--gold-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 50%;
}

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

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

.page-gdpr__list-item::before {
    content: '✓';
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-gdpr__sub-list {
    list-style: disc;
    padding-left: 30px;
    margin-top: 10px;
    color: var(--text-main-color);
}

.page-gdpr__sub-list-item {
    margin-bottom: 5px;
}

.page-gdpr__links-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.page-gdpr__links-list-item {
  display: inline-block;
  margin: 0 15px 10px;
}

.page-gdpr__link {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-gdpr__faq-section {
    padding: 60px 20px;
    background-color: var(--card-background-color);
}

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

details.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--background-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main-color);
    font-weight: bold;
    font-size: 1.1em;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
    display: none;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
}
.page-gdpr__faq-qtext {
    flex: 1;
    font-size: 1em;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}
.page-gdpr__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}
details.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 25px 20px;
    background: rgba(var(--primary-color), 0.05);
    border-radius: 0 0 8px 8px;
    color: var(--text-main-color);
    font-size: 0.95em;
}

.page-gdpr__footer-cta-section {
  background-color: var(--deep-red-color);
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__footer-cta-container {
  max-width: 900px;
}

.page-gdpr__footer-cta-title {
  color: var(--gold-color);
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__footer-cta-description {
  color: var(--text-main-color);
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__image--right {
        float: none;
        margin: 30px auto;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-gdpr__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-gdpr__content-section {
        padding: 40px 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.95em;
    }
    .page-gdpr__image {
        margin: 30px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }
    .page-gdpr__image--right {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }

    details.page-gdpr__faq-item summary.page-gdpr__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-gdpr__faq-qtext {
        font-size: 0.95em;
    }
    .page-gdpr__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-gdpr__faq-item .page-gdpr__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9em;
    }

    .page-gdpr__footer-cta-section {
      padding: 60px 15px;
    }

    .page-gdpr__footer-cta-title {
      font-size: 1.8em;
    }

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

    .page-gdpr__container,
    .page-gdpr__hero-container,
    .page-gdpr__faq-list,
    .page-gdpr__footer-cta-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .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;
    }
}

.page-gdpr img {
    filter: none !important;
}