/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 15px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over the image, but not covering text */
  background-color: rgba(17, 17, 17, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-gdpr__main-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-gdpr__section {
  padding: 60px 0;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__text-block a {
  color: #FFD36B; /* Auxiliary Color */
  text-decoration: underline;
}

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

.page-gdpr__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 15px #FFD36B; /* Glow */
}

.page-gdpr__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__dark-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__two-column-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-gdpr__content-block {
  color: #FFF6D6;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  color: #FFD36B; /* Auxiliary Color */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  color: #FFF6D6;
}

.page-gdpr__list li {
  margin-bottom: 8px;
  font-size: 1.0em;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card--transparency {
  background-color: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  border: 1px solid #3A2A12; /* Border */
}

.page-gdpr__faq-section {
  padding-bottom: 80px;
}

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

.page-gdpr__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  background-color: #1A1A1A;
  border-bottom: 1px solid #3A2A12;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Main Color */
}

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-gdpr__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-gdpr__faq-answer a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-gdpr__cta-section {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #0A0A0A;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111;
  border: 2px solid transparent;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.7), 0 0 20px #FFD36B; /* Glow */
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-gdpr__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-gdpr__two-column-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__two-column-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 100px) !important; /* Adjusted for mobile header */
  }
  .page-gdpr__hero-section {
    padding-bottom: 20px;
  }
  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
  }
  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__image-block {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
  }
  .page-gdpr__hero-content {
    margin-top: -40px;
  }
  .page-gdpr__main-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 10px 20px;
  }
}