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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  background-color: #111111; /* Card BG as a fallback */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for the image */
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
  position: relative;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0A0A0A;
  border-bottom: 1px solid #3A2A12; /* Border */
}

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

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

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

.page-gdpr p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-gdpr a {
  color: #F2C14E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FFD36B;
}

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

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

.page-gdpr__list strong {
  color: #F2C14E;
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

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

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(242, 193, 78, 0.2);
}

.page-gdpr__right-title {
  color: #F2C14E; /* Main color */
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding-bottom: 80px;
}

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

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

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

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

.page-gdpr__faq-question h3 {
  margin: 0;
  color: #FFF6D6;
  font-size: 1.2rem;
  font-weight: 600;
}

.page-gdpr__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #F2C14E;
  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 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
    padding-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: 2.2rem;
  }

  .page-gdpr__hero-description {
    font-size: 1.1rem;
  }

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

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .page-gdpr__sub-title {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__faq-question,
  .page-gdpr__faq-question h3 {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px 20px;
  }

  /* Image responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Container responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__rights-grid,
  .page-gdpr__rights-item,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Adjust padding for elements already having padding to avoid double padding */
  .page-gdpr__content-area {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-gdpr__rights-item, .page-gdpr__faq-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-gdpr__faq-question {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .page-gdpr__faq-answer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* Ensure image styles for content area are not too small */
.page-gdpr__image-content {
  min-width: 200px;
  min-height: 200px;
}

/* Specific button container styles for mobile to handle multiple buttons */
.page-gdpr__hero-content .page-gdpr__btn-primary {
    margin-bottom: 15px; /* Add margin for vertical stacking */
}

@media (max-width: 768px) {
  .page-gdpr__hero-content .page-gdpr__btn-primary {
    margin-bottom: 15px !important;
  }
  .page-gdpr__contact .page-gdpr__btn-secondary {
    margin-top: 20px;
  }
}