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

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for the first content section */
  background: linear-gradient(180deg, #08160F 0%, #11A84E 100%); /* Example gradient for hero background */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px 40px;
  max-width: 900px;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Card Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6;
}

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__card p {
  font-size: 1em;
  color: #A7D9B8;
}

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

.page-gdpr__text-block strong {
  color: #57E38D; /* Glow color for emphasis */
}

.page-gdpr__text-link {
  color: #2AD16F; /* Button color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: #57E38D; /* Glow color on hover */
  text-decoration: underline;
}

.page-gdpr__section-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Card Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green for question background */
  user-select: none;
}

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

.page-gdpr__faq-question::marker {
  display: none;
}

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

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

.page-gdpr__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card Background color */
  color: #A7D9B8;
  font-size: 1em;
  border-top: 1px solid #2E7A4E;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__contact-info p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

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

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  color: #F2FFF6;
  font-size: 1.1em;
}

.page-gdpr__contact-list li strong {
  color: #57E38D;
}

.page-gdpr__contact-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.page-gdpr__security-list li {
  margin-bottom: 10px;
  color: #F2FFF6;
  font-size: 1em;
  padding-left: 20px;
  position: relative;
}

.page-gdpr__security-list li::before {
  content: '✔';
  color: #2AD16F;
  position: absolute;
  left: 0;
}

.page-gdpr__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.page-gdpr__security-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 4vw, 3em);
  }

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
  }

  .page-gdpr__section {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__hero-content {
    padding: 0 15px 30px;
  }

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

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

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

  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

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

  .page-gdpr__section-image,
  .page-gdpr__contact-image,
  .page-gdpr__security-image,
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__text-block,
  .page-gdpr__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }

  .page-gdpr__security-list li {
    padding-left: 15px;
  }
  .page-gdpr__security-list li::before {
    left: -5px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }

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

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