.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-gdpr__section {
  padding: 40px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  color: #ffffff;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  max-height: 450px; /* Limit height for hero image */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.7); /* Subtle darkening for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold background */
  color: #003366; /* Dark blue text */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #003366; /* Dark blue */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

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

.page-gdpr__list li {
  background-color: #f2f2f2;
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 6px;
  border-left: 5px solid #003366; /* Dark blue accent */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-gdpr__list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list li h3 {
  color: #003366;
  margin-top: 0;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-gdpr__list li p {
  color: #555;
  font-size: 1em;
}

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

.page-gdpr__list ul li {
  background-color: transparent;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 5px;
  box-shadow: none;
}

.page-gdpr__list ul li:hover {
  transform: none;
  box-shadow: none;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--inline {
  display: block;
  margin: 20px auto;
  max-width: 70%;
}

.page-gdpr__contact-info {
  background-color: #e6f0fa;
  border: 1px solid #cce0f0;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #003366;
}

.page-gdpr__contact-info a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* FAQ Styles */
.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #003366;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #003366;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

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

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

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

  .page-gdpr__list li {
    padding: 15px;
  }

  .page-gdpr__list li h3 {
    font-size: 1.2em;
  }

  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .faq-question {
    padding: 12px;
  }

  .faq-question h3 {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-gdpr__list li h3 {
    font-size: 1.1em;
  }

  .page-gdpr__list li p {
    font-size: 0.9em;
  }
}