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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #08160F; /* Background color for the hero section */
  color: #F2FFF6; /* Light text for dark background */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
  margin-bottom: 20px; /* Space between image and content */
}

.page-gdpr__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

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

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

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

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
}

.page-gdpr__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
}

.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.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Main brand color */
}

.page-gdpr__description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
}

.page-gdpr__intro-gdpr .page-gdpr__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-gdpr__intro-gdpr .page-gdpr__text-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__intro-gdpr .page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__description,
.page-gdpr__dark-section .page-gdpr__card-title,
.page-gdpr__dark-section p,
.page-gdpr__dark-section a {
  color: #F2FFF6; /* Ensure all text is light on dark background */
}

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

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-gdpr__right-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-gdpr__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold for titles */
}

.page-gdpr__data-protection {
  background-color: #f8f8f8;
}

.page-gdpr__protection-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-gdpr__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-gdpr__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.page-gdpr__contact-gdpr {
  background-color: #ffffff; /* Light background as per contrast rules */
  color: #333333;
}

.page-gdpr__contact-gdpr .page-gdpr__section-title {
  color: #11A84E;
}

.page-gdpr__contact-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-gdpr__contact-info p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.page-gdpr__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #08160F; /* Background color for the FAQ section */
  color: #F2FFF6; /* Light text for dark background */
}

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

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  user-select: none;
  list-style: none;
  position: relative;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

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

/* General link styling */
.page-gdpr a {
  color: #2AD16F;
  text-decoration: none;
}

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

/* --- Responsive Styles --- */
@media (min-width: 769px) {
  .page-gdpr__intro-gdpr .page-gdpr__content-wrapper {
    flex-direction: row;
  }
}

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

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

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

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

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

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }

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

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

  .page-gdpr__description {
    margin-bottom: 30px;
  }

  .page-gdpr__rights-grid,
  .page-gdpr__protection-features {
    grid-template-columns: 1fr;
  }

  .page-gdpr__intro-gdpr .page-gdpr__content-wrapper {
    flex-direction: column;
  }

  /* Responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images or content */
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-content,
  .page-gdpr__cta-buttons,
  .page-gdpr__right-card,
  .page-gdpr__feature-card,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-gdpr__hero-image {
    margin-bottom: 15px;
  }

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

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