/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark background, so light text */
  background-color: #0a0a0a;
}

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

.page-gdpr__hero-banner {
  background: linear-gradient(135deg, #0A192F, #1A3A5B); /* Dark blue gradient */
  padding: 140px 0 80px 0; /* Adjusted padding-top for fixed header */
  text-align: center;
}

.page-gdpr__main-title {
  font-size: 48px;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold accent */
  color: #0A192F; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold accent */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-gdpr__btn-tertiary {
  display: inline-block;
  background-color: #1A3A5B; /* Darker blue */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-tertiary:hover {
  background-color: #2A4D70;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 36px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 24px;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__description {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-gdpr__description--cta {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__text-block {
  font-size: 17px;
  color: #f0f0f0;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-gdpr__data-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__data-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__data-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-title {
  font-size: 22px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__data-card p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__list-item {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-gdpr__list-item strong {
  color: #FFD700;
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__right-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__right-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slightly brighter icon to stand out on dark background */
}

.page-gdpr__right-card p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-gdpr__contact-info {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__contact-info p {
  font-size: 17px;
  margin-bottom: 10px;
}

.page-gdpr__contact-info a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ item */
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-gdpr__faq-toggle {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #f0f0f0;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-answer p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.page-gdpr__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-banner {
    padding: 120px 0 60px 0;
  }
  .page-gdpr__main-title {
    font-size: 40px;
  }
  .page-gdpr__hero-description {
    font-size: 16px;
  }
  .page-gdpr__section-title {
    font-size: 30px;
  }
  .page-gdpr__content-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image-wrapper:first-child {
    order: 2;
  }
  .page-gdpr__text-block:first-child {
    order: 1;
  }
  .page-gdpr__data-points, .page-gdpr__rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-banner {
    padding: 100px 0 50px 0 !important; /* Mobile padding-top for fixed header */
  }
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__hero-description {
    font-size: 15px;
  }
  .page-gdpr__btn-primary, .page-gdpr__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-gdpr__section {
    padding: 50px 0;
  }
  .page-gdpr__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
  }
  .page-gdpr__description, .page-gdpr__text-block p, .page-gdpr__list-item {
    font-size: 15px;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__data-points, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__data-card, .page-gdpr__right-card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 26px;
    width: 30px;
    height: 30px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }
}