/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background body */
  line-height: 1.6;
  background-color: #f8f8f8; /* Body background color */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #11A84E;
  letter-spacing: -0.02em;
}

.page-gdpr__subtitle {
  font-size: clamp(1em, 2.5vw, 1.2em);
  margin-bottom: 30px;
  color: #555555;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #11A84E;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-gdpr__dark-section {
  background-color: #08160F; /* Custom Background color */
  color: #F2FFF6; /* Text Main color */
}

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

.page-gdpr__dark-section .page-gdpr__text-secondary,
.page-gdpr__dark-section .page-gdpr__link {
  color: #A7D9B8;
}

.page-gdpr__dark-section .page-gdpr__link:hover {
  color: #57E38D;
}

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

.page-gdpr__list-item {
  background-color: #11271B; /* Card BG color */
  border-left: 5px solid #22C768;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list-item .page-gdpr__list-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main color */
}

.page-gdpr__list-item .page-gdpr__list-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary color */
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.page-gdpr__image--centered {
  margin: 30px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__link {
  color: #11A84E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #22C768;
}

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

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #11A84E;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__faq-question:hover {
  background-color: #f0f0f0;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-gdpr__contact-section {
  text-align: center;
  background-color: #08160F; /* Custom Background color */
}

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

.page-gdpr__contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #A7D9B8;
}

/* --- Responsive Styles --- */

/* Mobile-first approach, then larger screens */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-gdpr__subtitle {
    font-size: 1em; /* Adjusted for mobile */
  }

  .page-gdpr__cta-button {
    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: 1em;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-gdpr__text-block {
    font-size: 1em;
  }

  .page-gdpr__list-item {
    padding: 15px;
    margin-bottom: 10px;
  }

  .page-gdpr__list-item .page-gdpr__list-title {
    font-size: 1.1em;
  }

  .page-gdpr__list-item .page-gdpr__list-description {
    font-size: 0.95em;
  }

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

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

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

  .page-gdpr__contact-item {
    font-size: 1em;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }

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

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

  .page-gdpr__text-block {
    font-size: 1.05em;
  }
}