/* style/gdpr.css */

/* Global styles for .page-gdpr scope */
.page-gdpr {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color */
  line-height: 1.6;
}

/* Page sections */
.page-gdpr__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__dark-section {
  background-color: #11271B; /* Card BG for dark sections */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding */
  overflow: hidden; /* Ensure no overflow from image */
  max-width: 100%;
  box-sizing: border-box;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image wrapper for larger screens */
  margin-bottom: 30px; /* Space between image and content */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1; /* Ensure content is above any potential background elements */
}

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

.page-gdpr__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

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

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: #2AD16F; /* From button gradient start */
  border: 2px solid #2AD16F; /* Border color matching primary button */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.2);
}

.page-gdpr__btn-primary--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

/* General Section Titles */
.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-gdpr__sub-title {
  font-size: 1.5em;
  color: #2AD16F; /* From button gradient start */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Content Area */
.page-gdpr__content-area {
  max-width: 900px;
  margin: 0 auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__content-area p {
  margin-bottom: 1em;
}

.page-gdpr__content-area a {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
}

.page-gdpr__content-area a:hover {
  color: #F2FFF6; /* Text Main on hover */
}

/* Images within content */
.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image--right {
  margin-left: auto;
  margin-right: 0;
  max-width: 600px; /* Example size for floating image */
}

.page-gdpr__image--left {
  margin-right: auto;
  margin-left: 0;
  max-width: 600px; /* Example size for floating image */
}


/* Lists */
.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list-item {
  margin-bottom: 0.5em;
}

.page-gdpr__list-item strong {
  color: #F2FFF6; /* Text Main */
}

/* Cards Grid */
.page-gdpr__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #A7D9B8; /* Text Secondary */
}

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

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

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

.page-gdpr__contact-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__contact-link {
  color: #57E38D; /* Glow color */
  text-decoration: none;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-gdpr__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green on hover */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg); /* Rotate + to form X or similar */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    max-width: 90%;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    margin-bottom: 30px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }
  .page-gdpr__hero-image-wrapper {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-gdpr__hero-image {
    border-radius: 0; /* Remove border-radius on mobile for full width look */
  }
  .page-gdpr__section {
    padding: 30px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 15px;
  }
  .page-gdpr__description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 25px;
  }
  .page-gdpr__sub-title {
    font-size: 1.3em;
  }
  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image and video responsive adaptation */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure content images take full width */
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  /* All containers with images/videos */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__cta-buttons,
  .page-gdpr__faq-item,
  .page-gdpr__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }

  /* Specific handling for elements that should not have horizontal padding if they are full-width */
  .page-gdpr__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-gdpr__hero-content {
     padding-left: 15px !important;
     padding-right: 15px !important;
  }
}