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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #0A0A0A;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text for bright button */
  border: none;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-gdpr__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  border: 2px solid #3A2A12; /* Border */
  margin-left: 20px; /* Adjust as needed for layout */
}

.page-gdpr__btn-secondary:hover {
  transform: translateY(-3px);
  background: #3A2A12;
  color: #FFF6D6;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* Align items to the start for image placement */
  gap: 30px;
}

.page-gdpr__content-area p,
.page-gdpr__content-area ul,
.page-gdpr__content-area ol {
  flex: 1;
  min-width: 300px; /* Ensure content wraps nicely */
  color: #FFF6D6;
}

.page-gdpr__text-link {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: #FFD36B;
  text-decoration: underline;
}

.page-gdpr__image {
  width: 100%;
  max-width: 400px; /* Default max-width for content images */
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

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

/* Clear floats for paragraphs after images */
.page-gdpr__content-area p:nth-of-type(1) + .page-gdpr__image--left + p,
.page-gdpr__content-area p:nth-of-type(1) + .page-gdpr__image--right + p {
  clear: both;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #FFF6D6;
  flex: 1;
  min-width: 300px;
}

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

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

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2C14E; /* Main color */
  list-style: none;
  outline: none;
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD36B; /* Glow color */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 0 auto 20px auto;
    max-width: 100%;
  }
  .page-gdpr__content-area {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__content-area p,
  .page-gdpr__content-area ul,
  .page-gdpr__content-area ol {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    margin: 10px 0 !important; /* Stack buttons */
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    margin-left: 0 !important;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__content-area {
    padding-left: 15px;
    padding-right: 15px;
    gap: 20px;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-gdpr__faq-item {
    padding: 0;
  }
  .page-gdpr__faq-item summary,
  .page-gdpr__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__faq-question {
    font-size: 1em;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.2em;
  }
  .page-gdpr__hero-content,
  .page-gdpr__content-area,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__hero-content .page-gdpr__cta-button {
    margin: 5px 0 !important;
  }
}