/* style/gdpr.css */

/* Custom Colors */
:root {
  --gdpr-bg-primary: #08160F;
  --gdpr-card-bg: #11271B;
  --gdpr-text-main: #F2FFF6;
  --gdpr-text-secondary: #A7D9B8;
  --gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --gdpr-border-color: #2E7A4E;
  --gdpr-glow-color: #57E38D;
  --gdpr-gold-color: #F2C14E;
  --gdpr-divider-color: #1E3A2A;
  --gdpr-deep-green: #0A4B2C;
}

/* General Page Styling (Dark background) */
.page-gdpr {
  background-color: var(--gdpr-bg-primary); /* #08160F */
  color: var(--gdpr-text-main); /* #F2FFF6 */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3, .page-gdpr h4, .page-gdpr h5, .page-gdpr h6 {
  color: var(--gdpr-text-main); /* #F2FFF6 */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr p {
  color: var(--gdpr-text-secondary); /* #A7D9B8 */
  margin-bottom: 1em;
}

.page-gdpr a {
  color: var(--gdpr-glow-color);
  text-decoration: none;
}

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

/* Container for content sections */
.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

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

/* Buttons */
.page-gdpr__btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gdpr-btn-gradient); /* linear-gradient */
  color: #ffffff; /* White text for contrast */
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-gdpr__content-section {
  padding: 60px 0;
  border-top: 1px solid var(--gdpr-divider-color);
}

.page-gdpr__dark-section {
  background-color: var(--gdpr-bg-primary);
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--gdpr-text-main);
}

.page-gdpr__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gdpr-text-secondary);
}

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

/* Cards */
.page-gdpr__card {
  background-color: var(--gdpr-card-bg); /* #11271B */
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gdpr-border-color);
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gdpr-text-main);
}

.page-gdpr__card-text {
  color: var(--gdpr-text-secondary);
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: var(--gdpr-deep-green);
  border-top: 1px solid var(--gdpr-divider-color);
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gdpr-text-main);
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

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

.page-gdpr__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* var(--gdpr-border-color) with opacity */
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gdpr-glow-color);
  pointer-events: none; /* Prevents click on toggle from interfering with summary */
}

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

/* Contact Section */
.page-gdpr__contact-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--gdpr-divider-color);
}

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

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

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

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

  .page-gdpr__btn-primary {
    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: 0.95rem;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__card {
    padding: 20px;
    border-radius: 10px;
  }

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

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

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

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

  /* All containers with images/buttons/videos */
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-image,
  .page-gdpr__container,
  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
}