.page-gdpr {
  padding-top: var(--header-offset, 120px);
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #003366;
  color: #ffffff;
  gap: 40px;
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gdpr__hero-image {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__section--alt {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-gdpr__section-content {
  flex: 1;
}

.page-gdpr__section-image {
  flex: 1;
  min-width: 200px; /* Ensure images are not too small */
}

.page-gdpr__section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

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

.page-gdpr__list-item {
  background: #e6f0f7;
  border-left: 5px solid #003366;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 1.05em;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  margin: 10px;
}

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-gdpr__button--secondary:hover {
  background-color: #003366;
  color: #FFD700;
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.4);
}

.page-gdpr__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__inline-link:hover {
  color: #FFD700;
}

.page-gdpr__section--cta {
  text-align: center;
  background-color: #003366;
  color: #ffffff;
}

.page-gdpr__section--cta .page-gdpr__section-title {
  color: #FFD700;
  border-bottom-color: #FFD700;
}

.page-gdpr__section--cta .page-gdpr__text {
  color: #ffffff;
}

.page-gdpr__section--cta .page-gdpr__button--primary {
  background-color: #FFD700;
  color: #003366;
  border-color: #FFD700;
}

.page-gdpr__section--cta .page-gdpr__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-gdpr__section--cta .page-gdpr__button--secondary:hover {
  background-color: #ffffff;
  color: #003366;
}

/* Accordion Styles */
.page-gdpr__accordion {
  margin-top: 30px;
}

.page-gdpr__accordion-item {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__accordion-header {
  background-color: #003366;
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-gdpr__accordion-header:hover {
  background-color: #002244;
}

.page-gdpr__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-gdpr__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-gdpr__accordion-content {
  padding: 0 25px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-gdpr__accordion-content.open {
  max-height: 500px; /* Adjust as needed */
  padding: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

  .page-gdpr__section--alt {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px);
  }

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

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

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

  .page-gdpr__section {
    margin: 20px auto;
    padding: 20px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__text {
    font-size: 0.95em;
  }

  .page-gdpr__button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-gdpr__section-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-gdpr__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-gdpr__accordion-content.open {
    padding: 20px;
  }
}