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

.page-gdpr__section {
  padding: 40px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(168, 79, 12, 0.3); /* Border with transparency */
}

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

.page-gdpr__dark-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
}

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

.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  position: relative;
  overflow: hidden;
  color: #FFF3E6;
  background-color: #0D0E12;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: #FFF3E6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 180px;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #E67800 100%);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Primary color */
  border: 2px solid #FF8C1A;
}

.page-gdpr__btn-secondary:hover {
  background: rgba(255, 140, 26, 0.1);
  color: #FFB04D;
  border-color: #FFB04D;
}

.page-gdpr__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.page-gdpr__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-gdpr__text-block p,
.page-gdpr__text-block ul,
.page-gdpr__text-block ol {
  font-size: 16px;
  color: #FFF3E6;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-gdpr__text-block ul,
.page-gdpr__text-block ol {
  padding-left: 25px;
}

.page-gdpr__text-block ul li,
.page-gdpr__text-block ol li {
  margin-bottom: 8px;
}

.page-gdpr__text-block a {
  color: #FFB04D;
  text-decoration: underline;
}

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

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

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG */
  box-shadow: 0 4px 12px 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;
  background: #20232B;
  color: #FFF3E6;
}

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: #2c303a;
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 25px;
  background: #17191F; /* Card BG */
  border-radius: 0 0 10px 10px;
  color: #FFF3E6;
}

.page-gdpr__faq-answer p {
  font-size: 16px;
  color: #FFF3E6;
  margin-top: 15px;
}

.page-gdpr__cta-final {
  text-align: center;
  padding: 80px 0;
  background-color: #0D0E12;
}

.page-gdpr__cta-final .page-gdpr__container {
  background: #17191F; /* Card BG */
  border-radius: 15px;
  padding: 50px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-final .page-gdpr__section-title {
  color: #FFB04D;
  margin-bottom: 25px;
}

.page-gdpr__cta-final .page-gdpr__intro-text {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    height: 400px;
  }
  .page-gdpr__main-title {
    font-size: clamp(26px, 4.5vw, 42px);
  }
  .page-gdpr__intro-text {
    font-size: 17px;
  }
  .page-gdpr__section-title {
    font-size: clamp(22px, 3.8vw, 34px);
  }
  .page-gdpr__sub-title {
    font-size: clamp(18px, 2.8vw, 24px);
  }
  .page-gdpr__text-block p, .page-gdpr__text-block ul, .page-gdpr__text-block ol {
    font-size: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px; /* Ensure small top padding */
  }
  .page-gdpr__hero-image-wrapper {
    height: 300px;
  }
  .page-gdpr__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio if any */
  }
  .page-gdpr__hero-content {
    padding: 20px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-gdpr__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    min-width: unset;
  }
  .page-gdpr__section {
    padding: 30px 0;
  }
  .page-gdpr__dark-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: clamp(20px, 5.5vw, 30px);
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: clamp(17px, 4.5vw, 22px);
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-gdpr__text-block p,
  .page-gdpr__text-block ul,
  .page-gdpr__text-block ol {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .page-gdpr__text-block ul,
  .page-gdpr__text-block ol {
    padding-left: 20px;
  }
  .page-gdpr__image-content {
    max-width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-qtext {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
  }
  .page-gdpr__faq-answer p {
    margin-top: 10px;
  }
  .page-gdpr__cta-final {
    padding: 50px 0;
  }
  .page-gdpr__cta-final .page-gdpr__container {
    padding: 30px 20px;
  }
  .page-gdpr__cta-final .page-gdpr__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}