/* style/gdpr.css */

/* Body background color from shared.css, assuming it's dark based on custom colors */
.page-gdpr {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.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 as body handles --header-offset */
  background-color: #08160F;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height to prevent overly large hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

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

.page-gdpr__main-title {
  color: #F2FFF6;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-gdpr__description {
  color: #A7D9B8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG for alternating sections */
}

.page-gdpr__section-title {
  color: #F2FFF6;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-gdpr__sub-title {
  color: #F2C14E; /* Gold for sub-titles */
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__content-area p,
.page-gdpr__content-area li {
  color: #A7D9B8;
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-gdpr__content-area a {
  color: #57E38D; /* Glow for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__content-area a:hover {
  color: #2AD16F;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.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;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #0A4B2C; /* Deep Green for open state */
}

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

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

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

.page-gdpr__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Divider style */
.page-gdpr__section + .page-gdpr__section {
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-gdpr__description {
    font-size: 1rem;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

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

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__container,
  .page-gdpr__content-area,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

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

  /* Ensure content containers have padding */
  .page-gdpr__section .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}