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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px; /* Adjust as needed */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
  overflow: hidden; /* Ensure no overflow from hero image */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: auto; /* Allow image to define height */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

.page-gdpr__hero-content {
  position: relative; /* Relative to hero-section */
  z-index: 1;
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top: -150px; /* Pull content up over the image slightly for visual flow */
  background: linear-gradient(to top, rgba(8, 22, 15, 1) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
  padding-top: 150px; /* Compensate for the negative margin */
  padding-bottom: 50px;
  border-radius: 10px;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* H1 font size with clamp */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  box-sizing: border-box;
}

.page-gdpr__dark-section {
  background-color: #11A84E; /* Main color for contrast sections */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2FFF6;
}

.page-gdpr__dark-section p {
  color: #F2FFF6;
}

.page-gdpr__dark-section li {
  color: #F2FFF6;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add padding for mobile responsiveness */
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr p {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

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

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

.page-gdpr__card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card p {
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box; /* For mobile button responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

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

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #11271B; /* Card BG */
  color: #57E38D; /* Glow color for text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  border: 2px solid #2E7A4E; /* Border */
  cursor: pointer;
  margin-left: 15px;
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box; /* For mobile button responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-gdpr__btn-secondary:hover {
  background-color: #2E7A4E; /* Border */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green for a distinct CTA section */
  border-top: 5px solid #2E7A4E; /* Divider */
}

.page-gdpr__cta-content {
  max-width: 900px;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%; /* For mobile button responsiveness */
  max-width: 100%; /* For mobile button responsiveness */
  box-sizing: border-box; /* For mobile button responsiveness */
  overflow: hidden; /* For mobile button responsiveness */
}

/* FAQ styles */
.page-gdpr__faq-list {
  margin-top: 30px;
}

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

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

.page-gdpr__faq-item summary:hover {
  background-color: #2E7A4E; /* Border */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

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

.page-gdpr__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

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

  .page-gdpr__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding-top: 100px;
    padding-bottom: 30px;
    border-radius: 0; /* No border-radius on mobile hero content */
  }

  .page-gdpr__main-title {
    font-size: 2rem;
  }

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

  .page-gdpr__section {
    padding: 40px 15px; /* Adjust padding for mobile */
  }

  .page-gdpr__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.2rem;
  }

  .page-gdpr__cta-section {
    padding: 60px 15px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px; /* Add padding to button container */
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__cta-section,
  .page-gdpr__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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