/* style/gdpr.css */

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

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 1;
}

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

.page-gdpr__subtitle {
  font-size: clamp(1em, 2.5vw, 1.3em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow effect */
}

.page-gdpr__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
  margin-left: 20px;
}

.page-gdpr__cta-button--secondary:hover {
  background: #0A4B2C; /* Deep Green */
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.2);
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4em, 3vw, 1.8em);
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-gdpr__text-block strong {
  color: #57E38D; /* Glow */
}

.page-gdpr__text-block a {
  color: #2AD16F; /* Button top color for links */
  text-decoration: none;
  border-bottom: 1px solid #2AD16F;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__text-block a:hover {
  color: #57E38D; /* Glow */
  border-color: #57E38D;
}

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

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

.page-gdpr__list-item strong {
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 30px 0;
  border-radius: 10px;
  display: block;
}

.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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 1000px; /* Adjust as needed for content length */
  transition: max-height 0.5s ease-in;
}

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

.page-gdpr__faq-item summary {
  list-style: none;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

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

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    margin: 10px 0 !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gdpr__cta-button--secondary {
    margin-left: 0 !important;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__sub-title {
    font-size: 1.2em;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer p {
    font-size: 0.95em;
  }

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

  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__faq-item,
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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