/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: 100px; /* Push content down over image */
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast on bright button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B02E 100%);
  transform: translateY(-2px);
}

/* General Section Styles */
.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid #3A2A12; /* Border */
}

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

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

.page-gdpr__container--center {
  text-align: center;
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-gdpr__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFD36B; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__text-link {
  color: #FFD36B; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: #F2C14E; /* Main color */
}

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

.page-gdpr__list--bullet {
  list-style-type: disc;
  padding-left: 20px;
}

.page-gdpr__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding-left: 0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #FFF6D6; /* Text Main */
}

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

.page-gdpr__image-text-block--reversed {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__content-image--center {
  margin: 20px auto;
  max-width: 800px;
}

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

.page-gdpr__faq-item {
  background-color: #111111; /* Card B G */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #222222;
}

.page-gdpr__faq-title {
  font-size: 1.2rem;
  color: #FFD36B; /* Glow */
  margin: 0;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-gdpr__faq-answer .page-gdpr__paragraph {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-gdpr__cta-final-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #111111; /* Card B G */
}

.page-gdpr__cta-button--large {
  font-size: 1.2rem;
  padding: 18px 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: 80px;
  }

  .page-gdpr__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__image-text-block--reversed {
    flex-direction: column;
  }

  .page-gdpr__content-image {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    margin-top: 60px;
    padding: 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 25px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 1rem;
  }

  .page-gdpr__list--columns {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image-text-block {
    gap: 20px;
  }

  /* Mobile image adaptation */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button adaptation */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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;
  }
  
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    margin-top: 40px;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
}