.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main color, chosen for dark body background */
  background-color: #0A0A0A; /* Body background */
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #111111; /* Card BG color for hero section */
  border-bottom: 2px solid #3A2A12; /* Border color */
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3); /* Glow effect */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-gdpr__hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size clamp */
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.7); /* Subtle glow for H1 */
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid #3A2A12; /* Border color */
  background-color: #0A0A0A; /* Background color */
}

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

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.5);
}

.page-gdpr h2 {
  color: #F2C14E; /* Main color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr h3 {
  color: #FFD36B; /* Auxiliary color */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-gdpr a {
  color: #FFD36B; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #F2C14E; /* Main color on hover */
  text-decoration: underline;
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF6D6; /* Text Main color */
}

.page-gdpr__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Main color for bullet */
  font-weight: bold;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-gdpr__faq-section {
  background-color: #111111; /* Card BG color for FAQ section */
  padding: 60px 20px;
  border-top: 1px solid #3A2A12; /* Border color */
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #0A0A0A; /* Background color */
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.1);
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Main color */
  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: rgba(255, 211, 107, 0.1); /* Subtle hover effect */
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6; /* Text Main color */
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question.active .page-gdpr__faq-qtext {
  color: #F2C14E; /* Active question text color */
}
.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  color: #F2C14E; /* Main color for open state */
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: #111111; /* Card BG color */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6; /* Text Main color */
}
.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* Image responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content area image size enforcement */
.page-gdpr__container img {
  min-width: 200px;
  min-height: 200px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  margin: 30px 0;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.2);
}


/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__hero-image img {
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 211, 107, 0.2);
  }

  .page-gdpr__hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-gdpr__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 20px;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

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

  .page-gdpr h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-gdpr h3 {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .page-gdpr p, .page-gdpr__list li {
    font-size: 0.95rem;
  }

  .page-gdpr__list li {
    padding-left: 25px;
  }

  .page-gdpr__list li::before {
    font-size: 1rem;
    top: 3px;
  }

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 20px;
    font-size: 15px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question { padding: 15px; }
  .page-gdpr__faq-qtext { font-size: 1rem; }
  .page-gdpr__faq-toggle { font-size: 20px; width: 24px; }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}