/* Base Styles for page-gdpr */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  padding-bottom: 50px;
}

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

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

.page-gdpr__section--dark-bg {
  background-color: #140C0C;
  color: #FFF1E8;
}

.page-gdpr__section--light-bg {
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.15rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF1E8;
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFB04A 0%, #D86A14 100%);
  border-radius: 2px;
}

.page-gdpr__content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #2A1212; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E;
}

.page-gdpr__content-block h3 {
  color: #FFB04A;
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-gdpr__list li {
  margin-bottom: 8px;
  color: #FFF1E8;
}

.page-gdpr__list li strong {
  color: #F3C54D;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for visual effect */
  background: rgba(42, 18, 18, 0.85); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid #6A1E1E;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 176, 74, 0.3);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #FFC06A 0%, #E87A24 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 176, 74, 0.4);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F3C54D;
  border: 2px solid #F3C54D;
  box-shadow: 0 4px 10px rgba(243, 197, 77, 0.2);
}

.page-gdpr__btn-secondary:hover {
  background: rgba(243, 197, 77, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(243, 197, 77, 0.3);
}

.page-gdpr__link {
  color: #FFB04A;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-gdpr__content-block--with-image {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
}

.page-gdpr__content-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__content-image {
  flex-shrink: 0;
  border-radius: 8px;
  max-width: 40%;
  height: auto;
  object-fit: cover;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-gdpr__content-image--left {
  margin-right: 20px;
}

.page-gdpr__content-image--right {
  margin-left: 20px;
}

.page-gdpr__text-content {
  flex-grow: 1;
}

/* FAQ Section */
.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3C54D; /* Gold */
  font-weight: 600;
}

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

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: #3A1E1E; /* Slightly lighter for hover */
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04A;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 20px;
  background: #1C0F0F; /* Slightly different background for answer */
  border-radius: 0 0 8px 8px;
  color: #FFF1E8;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -100px;
    padding: 30px 15px;
  }

  .page-gdpr__content-block--with-image {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-gdpr__content-image {
    max-width: 60%;
    margin: 0 auto 20px !important;
  }

  .page-gdpr__content-block--reverse .page-gdpr__content-image {
    margin: 0 auto 20px !important;
  }

  .page-gdpr__text-content {
    text-align: center;
  }

  .page-gdpr__list {
    text-align: left;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }

  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
  }

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

  .page-gdpr__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

  .page-gdpr__content-block {
    padding: 20px;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__content-block h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__content-image {
    max-width: 80%;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .page-gdpr__faq-list {
    padding: 0;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
  }

  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 24px;
    margin-left: 10px;
  }

  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* General image responsive styles for content area */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-gdpr__container, 
  .page-gdpr__content-block,
  .page-gdpr__content-block--with-image,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}