/* style/gdpr.css */

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

.page-gdpr {
  background-color: var(--fly88-background);
  color: var(--fly88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  background-color: var(--fly88-deep-green);
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  /* filter: grayscale(100%); -- Removed to strictly comply with no filter on images */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--fly88-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: var(--fly88-background);
  color: var(--fly88-text-main);
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fly88-primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--fly88-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr p {
  margin-bottom: 15px;
  color: var(--fly88-text-main);
}

.page-gdpr__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr__content-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-gdpr__rights-list,
.page-gdpr__data-collection-list,
.page-gdpr__data-sharing-list {
  flex: 1 1 500px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__rights-list li,
.page-gdpr__data-collection-list li,
.page-gdpr__data-sharing-list li {
  background-color: var(--fly88-card-bg);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid var(--fly88-primary);
  color: var(--fly88-text-main);
}

.page-gdpr__rights-list li strong,
.page-gdpr__data-collection-list li strong,
.page-gdpr__data-sharing-list li strong {
  color: var(--fly88-primary);
}

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

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

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--fly88-text-main);
  list-style: none;
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--fly88-primary);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: "−";
}

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

.page-gdpr__faq-answer p {
  margin-bottom: 0;
  color: var(--fly88-text-secondary);
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 10px;
  background-color: var(--fly88-deep-green);
  color: var(--fly88-text-main);
}

.page-gdpr__cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fly88-text-main);
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.1rem;
  color: var(--fly88-text-secondary);
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 30px 15px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__image-text-block {
    flex-direction: column;
    gap: 20px;
  }
  .page-gdpr__content-image,
  .page-gdpr__rights-list,
  .page-gdpr__data-collection-list,
  .page-gdpr__data-sharing-list {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .page-gdpr__description {
    font-size: 1rem;
  }
  .page-gdpr__btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }
  .page-gdpr p {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }
  .page-gdpr__cta-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-gdpr__cta-description {
    font-size: 1rem;
  }
  
  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-section,
  .page-gdpr__container,
  .page-gdpr__image-text-block,
  .page-gdpr__cta-section,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  /* Specific override for hero image wrapper padding, as it's full width and absolute */
  .page-gdpr__hero-image-wrapper { 
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsiveness */
  .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-left: 15px;
    padding-right: 15px;
  }
  /* Ensure containers for buttons also adapt */
  .page-gdpr__hero-content .page-gdpr__btn-primary,
  .page-gdpr__cta-section .page-gdpr__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
}