.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Background color from custom palette */
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: 500px; /* Fixed height for hero image wrapper */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%); /* Gradient to blend with background */
  margin-top: -100px; /* Overlap image slightly */
  border-radius: 8px;
  max-width: 900px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3em);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-gdpr__dark-bg {
  background-color: #11271B; /* Card BG color from custom palette */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-gdpr__contact-link {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__feature-item {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__feature-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.page-gdpr__feature-title::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow color */
}

.page-gdpr__feature-description {
  color: #A7D9B8;
  font-size: 1em;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__rights-item {
  background-color: #0A4B2C; /* Deep Green for list items */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 5px solid #22C768; /* Auxiliary color accent */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__rights-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-gdpr__rights-description {
  color: #A7D9B8;
  font-size: 1em;
}

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

.page-gdpr__security-item {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__security-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.page-gdpr__security-title::before {
  content: '🔒'; /* Lock emoji */
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow color */
}

.page-gdpr__security-description {
  color: #A7D9B8;
  font-size: 1em;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG color */
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #F2FFF6;
  font-size: 1.3em;
  font-weight: bold;
  padding: 5px 0;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow color */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding-top: 15px;
  color: #A7D9B8;
  font-size: 1.05em;
  border-top: 1px solid #1E3A2A; /* Divider color */
  margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 15px;
  }

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

  .page-gdpr__hero-image-wrapper {
    height: 300px;
  }

  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-gdpr__cta-button {
    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__section-title {
    font-size: 2em;
  }

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

  .page-gdpr__paragraph {
    font-size: 1em;
  }

  .page-gdpr__feature-grid, .page-gdpr__security-features {
    grid-template-columns: 1fr;
  }

  .page-gdpr__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__faq-item summary {
    font-size: 1.1em;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__section, .page-gdpr__card, .page-gdpr__container,
  .page-gdpr__hero-section, .page-gdpr__hero-content, .page-gdpr__hero-image-wrapper,
  .page-gdpr__feature-item, .page-gdpr__rights-item, .page-gdpr__security-item,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
}