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

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__intro-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__content-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__heading-2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__heading-2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Main Color */
  border-radius: 2px;
}

.page-gdpr__heading-3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #22C768; /* Auxiliary Color */
}

.page-gdpr__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__paragraph strong {
  color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 800px; /* Example width matching placeholder */
  height: 600px; /* Example height matching placeholder */
}

.page-gdpr__image--inline {
  width: 100%; /* Adjust for inline flow */
  height: auto;
  object-fit: cover;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-gdpr__faq-section .page-gdpr__heading-2 {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

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

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

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary:hover {
  background-color: rgba(34, 199, 104, 0.1);
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-gdpr__content-section a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-gdpr__content-section a:hover {
  color: #F2C14E; /* Gold */
}

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

  .page-gdpr__intro-description {
    font-size: 1rem;
  }

  .page-gdpr__heading-2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  }

  .page-gdpr__heading-3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  }

  .page-gdpr__paragraph,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-content {
    max-width: 100%;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__intro-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-gdpr__cta-button,
  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-gdpr__content-section {
    padding: 60px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__heading-2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 25px;
  }

  .page-gdpr__heading-3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer p {
    font-size: 0.9rem;
  }

  .page-gdpr__list-item {
    padding-left: 25px;
  }

  .page-gdpr__list-item::before {
    font-size: 1.1rem;
  }

  .page-gdpr__list--columns {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image {
    margin: 20px auto;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .page-gdpr__faq-section {
    padding: 40px 0;
    margin-top: 30px;
  }

  .page-gdpr__faq-section .page-gdpr__heading-2 {
    margin-bottom: 30px;
  }

  .page-gdpr__faq-item summary {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.5rem;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  
  .page-gdpr__content-area,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__cta-wrapper,
  .page-gdpr__faq-section,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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