/* style/gdpr.css */

/* --- General Page Styling (BEM) --- */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000000 from shared.css */
  padding-top: 120px; /* Space for fixed header - Desktop */
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px; /* Space for fixed header - Mobile */
  }
}

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

.page-gdpr__hero-banner {
  text-align: center;
  padding: 60px 20px;
}

.page-gdpr__main-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-gdpr__subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #E5B80B, #FFD700); /* Luxury gold */
  color: #0A2463; /* Dark blue text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(135deg, #FFD700, #E5B80B);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-gdpr__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

.page-gdpr__content-block p {
  flex: 1;
  min-width: 300px;
  font-size: 16px;
  margin-bottom: 15px;
}

.page-gdpr__content-block ul {
  flex: 1;
  min-width: 300px;
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
}

.page-gdpr__content-block li {
  margin-bottom: 10px;
}

.page-gdpr__image {
  max-width: 400px; /* Ensure images are large enough */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__image--left {
  margin-right: 30px;
}

.page-gdpr__image--right {
  margin-left: 30px;
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #ffffff; /* For dark sections */
}

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

.page-gdpr__contact-list li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__link {
  color: #E5B80B; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-gdpr__paragraph-center {
  text-align: center;
  font-size: 17px;
  margin-top: 30px;
  color: #f0f0f0;
}

.page-gdpr__highlight {
  color: #E5B80B; /* Highlight keywords with auxiliary color */
  font-weight: bold;
}

/* --- Color Contrast Classes --- */
.page-gdpr__dark-bg {
  background-color: #0A2463; /* Primary dark blue */
  color: #ffffff; /* Light text */
}

.page-gdpr__light-bg {
  background-color: #f8f9fa; /* Very light gray */
  color: #333333; /* Dark text */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__sub-title,
.page-gdpr__light-bg .page-gdpr__highlight {
  color: #0A2463; /* Dark blue for headings/highlights on light background */
}

.page-gdpr__light-bg .page-gdpr__link {
  color: #0A2463; /* Dark blue for links on light background */
}

.page-gdpr__light-bg .page-gdpr__link:hover {
  color: #E5B80B; /* Auxiliary color on hover for light background */
}

/* --- FAQ Styling (BEM) --- */
.page-gdpr__faq-section {
  padding: 60px 20px;
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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 15px;
  opacity: 0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* Important for JS toggle */
  padding: 20px 15px !important; /* Important for JS toggle */
  opacity: 1;
  background: #f0f0f0; /* Light background for answer */
  color: #333333; /* Dark text for answer */
  border-radius: 0 0 5px 5px;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333; /* Dark text for question */
}

.page-gdpr__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-gdpr__faq-question:active {
  background: #eeeeee;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333; /* Dark text for question title */
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #0A2463; /* Dark blue for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #E5B80B; /* Auxiliary color when active */
}

/* --- Responsive Design (BEM) --- */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__content-block {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__image {
    max-width: 100%;
    margin: 0 !important; /* Override margin for better stacking */
  }
  .page-gdpr__content-block p,
  .page-gdpr__content-block ul {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-banner {
    padding: 40px 15px;
  }
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__subtitle {
    font-size: 16px;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-gdpr__section {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
  }
  .page-gdpr__content-block p,
  .page-gdpr__content-block li {
    font-size: 15px;
  }
  .page-gdpr__faq-section {
    padding: 40px 15px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-gdpr__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-gdpr__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }
}