/* style/gdpr.css */

/* Base styles for GDPR page */
.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.page-gdpr__subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__text-block {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__text-block a {
  color: #2AD16F; /* A lighter green for links */
  text-decoration: underline;
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

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

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Highlight color */
  font-weight: bold;
}

.page-gdpr__ordered-list {
  list-style: decimal;
  padding-left: 20px;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__ordered-list .page-gdpr__list-item {
  padding-left: 0;
}

.page-gdpr__ordered-list .page-gdpr__list-item::before {
  content: none;
}

.page-gdpr__image-container {
  text-align: center;
  margin-bottom: 30px;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

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

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green for text */
  border: 2px solid #2AD16F;
}

.page-gdpr__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

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

/* FAQ Section */
.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #1E3A2A; /* Divider */
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__faq-item:last-child {
  border-bottom: none;
}

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

.page-gdpr__faq-question:hover {
  background-color: #1E3A2A; /* Slightly darker */
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  background-color: #1E3A2A;
}

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

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

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

.page-gdpr__faq-answer {
  padding: 15px 20px;
  background-color: #0A4B2C; /* Deep Green for answers */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.5;
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

/* Conclusion Section */
.page-gdpr__conclusion {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

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

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

  .page-gdpr__subtitle,
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__ordered-list {
    font-size: 1em;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  /* Images responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__image-container,
  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .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;
    margin: 10px 0 !important;
  }
  .page-gdpr__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ responsive */
  .page-gdpr__faq-list {
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-gdpr__hero-image-wrapper {
    max-height: 200px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__ordered-list {
    font-size: 0.9em;
  }
  .page-gdpr__list-item::before {
    font-size: 1.2em;
  }
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    font-size: 0.9em;
  }
}