/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--background-color);
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background: var(--deep-green);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* General Content Sections */
.page-gdpr__content-section {
  padding: 60px 0;
  background: var(--background-color);
  color: var(--text-main);
}

.page-gdpr__dark-section {
  background: var(--card-bg);
  color: var(--text-main);
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
}

.page-gdpr__section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr__text-block {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(17, 39, 27, 0.5); /* Slightly lighter card bg for contrast */
  color: var(--text-main);
}

.page-gdpr__dark-section .page-gdpr__text-block {
  background: rgba(8, 22, 15, 0.5); /* Slightly darker bg for contrast */
}

.page-gdpr__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--glow);
  margin-bottom: 15px;
}

.page-gdpr__text-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-gdpr__list-item {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: var(--glow);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action Buttons */
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  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: #ffffff;
  border: none;
}

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

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

.page-gdpr__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
  background: var(--background-color);
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  background: var(--card-bg);
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background: rgba(17, 39, 27, 0.7);
}

.page-gdpr__faq-question:hover {
  background: rgba(17, 39, 27, 0.9);
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--glow);
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background: rgba(17, 39, 27, 1);
}

/* Links within content */
.page-gdpr p a, .page-gdpr li a {
  color: var(--glow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr p a:hover, .page-gdpr li a:hover {
  color: var(--gold);
}

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

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

  .page-gdpr__intro-text {
    font-size: 1rem;
  }

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

  .page-gdpr__content-section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section {
    padding: 40px 0;
  }

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

  .page-gdpr__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-gdpr__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }

  .page-gdpr p,
  .page-gdpr li {
    font-size: 0.95rem;
  }

  .page-gdpr__content-image {
    margin: 30px auto;
  }

  .page-gdpr__text-block {
    padding: 15px;
  }

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

  .page-gdpr__faq-toggle {
    font-size: 1.3rem;
  }

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  /* Button group specific for mobile */
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Color contrast specific overrides if needed (should be handled by default colors) */
.page-gdpr__text-contrast-fix {
  color: #F2FFF6 !important;
  background: #08160F !important;
}