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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #08160F;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow */
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E; /* Border */
  margin-top: 20px;
}

.page-gdpr__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  transform: translateY(-2px);
}

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

.page-gdpr__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__text-block a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: #57E38D;
}

.page-gdpr__image-text-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__image-text-grid--reversed {
  flex-direction: row-reverse;
}

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

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 200px;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list-item {
  font-size: 1.05em;
  color: #F2FFF6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #2AD16F; /* Button color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-gdpr__contact-info {
  margin-bottom: 40px;
}

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

.page-gdpr__contact-list .page-gdpr__list-item {
  padding-left: 0;
}

.page-gdpr__contact-list .page-gdpr__list-item::before {
  content: none;
}

.page-gdpr__contact-link {
  color: #2AD16F; /* Button color for links */
  text-decoration: none;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #57E38D;
}

.page-gdpr__contact-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__faq-list {
  margin-top: 40px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__faq-item {
  border-bottom: 1px solid #1E3A2A; /* Divider */
  padding: 20px 0;
  color: #F2FFF6;
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

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

.page-gdpr__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  transition: color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  color: #F2C14E; /* Gold */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #2AD16F; /* Button color */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding-top: 15px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
}

.page-gdpr__link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #57E38D;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 0 15px;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image-text-grid {
    flex-direction: column;
  }
  .page-gdpr__image-text-grid--reversed {
    flex-direction: column;
  }
  .page-gdpr__text-content, .page-gdpr__image-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-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__content-section {
    padding: 50px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__card-text,
  .page-gdpr__faq-answer p {
    font-size: 0.95em;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__faq-question {
    font-size: 1.1em;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-wrapper,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__contact-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__data-collection-cards {
    grid-template-columns: 1fr;
  }
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}