.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: var(--color-auxiliary, #FFFFFF); /* Assuming --color-auxiliary is light */
}

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

/* Hero Section */
.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: var(--header-offset, 120px);
  background-color: #26A9E0; /* Primary color as background for hero */
  color: #FFFFFF; /* White text for primary background */
}

.page-gdpr__hero-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 900px;
  line-height: 1.5;
  color: #FFFFFF;
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 800px; /* Adjust max-width for content hero image */
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

/* Content Sections */
.page-gdpr__content-section {
  padding: 60px 0;
  background-color: var(--color-auxiliary, #FFFFFF);
  color: #333333;
}

.page-gdpr__section-title {
  font-size: 28px;
  color: #26A9E0; /* Primary color for section titles */
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.page-gdpr__list-item strong {
    color: #000000;
}

.page-gdpr__image-container {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__contact-info {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
    font-size: 17px;
}

.page-gdpr__contact-info a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

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

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-gdpr__faq-question:active {
  background: #eeeeee;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #26A9E0;
  transform: rotate(180deg);
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #555555;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-gdpr__faq-answer p {
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 32px;
  }
  .page-gdpr__hero-description {
    font-size: 16px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-title {
    font-size: 28px;
  }
  .page-gdpr__hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-gdpr__hero-image {
      border-radius: 8px;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 15px;
  }
  .page-gdpr__image-container {
      margin: 20px auto;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }

  /* FAQ Mobile */
  .page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 24px;
  }
  .page-gdpr__hero-description {
    font-size: 14px;
  }
  .page-gdpr__section-title {
    font-size: 20px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 15px;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
}

/* Ensure all content containers are responsive */
.page-gdpr__section,
.page-gdpr__card,
.page-gdpr__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile button 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%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-buttons,
.page-gdpr__button-group,
.page-gdpr__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}