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

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to allow text to stand out */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2FFF6;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

.page-gdpr__section {
  padding: 80px 20px;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4em, 2vw, 2em);
  color: #F2FFF6;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-gdpr__text-block {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-gdpr__introduction .page-gdpr__text-block {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__what-is-gdpr {
  background-color: #11271B; /* Card BG */
}

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

.page-gdpr__grid-item {
  background-color: #08160F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__image-content {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-gdpr__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
  color: #A7D9B8;
  text-align: left;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__eubet-compliance {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-gdpr__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

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

.page-gdpr__card-text {
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.7;
}

.page-gdpr__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E;
}

.page-gdpr__cta-block .page-gdpr__sub-title {
  color: #F2FFF6;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  color: #2AD16F;
  text-decoration: none;
  border: 2px solid #2AD16F;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F;
}

.page-gdpr__commitment {
  background-color: #08160F; /* Background */
}

.page-gdpr__grid--commitment {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-gdpr__commitment-item {
  text-align: center;
  padding: 25px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-gdpr__faq-item {
  background-color: #08160F;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  color: #F2FFF6;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
}

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

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.7;
  animation: fadein 0.3s ease-in-out;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-gdpr__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-gdpr__faq-answer a:hover {
  color: #57E38D;
}

.page-gdpr__conclusion {
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-gdpr__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

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

  .page-gdpr__description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }

  .page-gdpr__section {
    padding: 60px 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
    margin-bottom: 40px;
  }

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

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-gdpr__hero-image {
    max-height: 400px;
  }

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

  .page-gdpr__description {
    font-size: clamp(0.85em, 2.5vw, 1em);
  }

  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__grid-item,
  .page-gdpr__card,
  .page-gdpr__commitment-item,
  .page-gdpr__cta-block,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.1em, 4vw, 1.5em);
  }

  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__card-text {
    font-size: 1em;
  }

  .page-gdpr__grid, .page-gdpr__grid--3-cols, .page-gdpr__grid--commitment {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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;
    text-align: center;
  }

  .page-gdpr__cta-block {
    padding: 30px 15px;
  }

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

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

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

  .page-gdpr__conclusion .page-gdpr__text-block {
    padding: 0 15px;
  }
}

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

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

  .page-gdpr__description {
    font-size: clamp(0.8em, 3vw, 0.9em);
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 20px;
  }

  .page-gdpr__section {
    padding: 30px 0;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2em, 6vw, 1.8em);
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1em, 5vw, 1.3em);
  }

  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__card-text {
    font-size: 0.95em;
  }

  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

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