.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f9f9f9;
}

.page-gdpr a {
  color: #0A2647;
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
  color: #E6B31E;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: #0A2647; /* Main brand color */
  color: #ffffff; /* White text for dark background */
  overflow: hidden;
}

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

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

.page-gdpr__main-heading {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E6B31E; /* Accent color for main heading */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E6B31E; /* Accent color for CTA */
  color: #0A2647; /* Dark text for accent background */
  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.2);
}

.page-gdpr__cta-button:hover {
  background: #ffc107; /* Slightly lighter accent on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-image {
  width: 100%;
  margin-top: 40px;
  max-width: 900px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 20px;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.page-gdpr__section-heading {
  font-size: 2.5em;
  color: #0A2647;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__text-block--light {
  color: #f0f0f0; /* Light text for dark background */
}

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

.page-gdpr__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-gdpr__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-title {
  font-size: 1.6em;
  color: #0A2647;
  margin-bottom: 15px;
}

.page-gdpr__card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-gdpr__list-item {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #E6B31E;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list-item h3 {
  color: #0A2647;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list--light .page-gdpr__list-item {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-left-color: #E6B31E;
}

.page-gdpr__list--light .page-gdpr__list-item h3 {
  color: #E6B31E;
}

/* Dark Background Section */
.page-gdpr__dark-bg {
  background-color: #0A2647;
  color: #ffffff;
}

.page-gdpr__dark-bg .page-gdpr__section-heading {
  color: #E6B31E;
}

.page-gdpr__dark-bg .page-gdpr__section-heading::after {
  background-color: #E6B31E;
}

/* FAQ Section */
.page-gdpr__faq-container {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.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 h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #0A2647;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E6B31E;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #E6B31E;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #0A2647;
  transform: rotate(45deg); /* For '-' symbol, rotate '+' */
  border-color: #0A2647;
}

.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;
  background: #fdfdfd;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #fdfdfd;
}

.page-gdpr__faq-answer p {
  margin: 0;
  color: #555555;
}

/* Contact CTA Section */
.page-gdpr__contact-cta {
  background: #f0f0f0;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__contact-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__contact-cta .page-gdpr__section-heading {
  color: #0A2647;
}

.page-gdpr__contact-cta p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-gdpr__contact-cta img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-heading {
    font-size: 2.8em;
  }

  .page-gdpr__section-heading {
    font-size: 2em;
  }

  .page-gdpr__hero-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-gdpr__main-heading {
    font-size: 2.2em;
  }

  .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__hero-container {
    gap: 20px;
  }

  .page-gdpr__hero-image {
    margin-top: 20px;
  }

  .page-gdpr__hero-image img,
  .page-gdpr__card img,
  .page-gdpr__contact-cta img,
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__text-block,
  .page-gdpr__faq-container,
  .page-gdpr__contact-cta-inner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__section-heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.4em;
  }

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

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

  .page-gdpr__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .page-gdpr__faq-question h3 {
    font-size: 1.1em;
    width: calc(100% - 40px);
  }

  .page-gdpr__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }

  .page-gdpr__contact-cta {
    padding: 60px 20px;
  }

  .page-gdpr__contact-cta p {
    font-size: 1em;
  }
}

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

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

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

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

  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
}