.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: var(--bg-dark); /* Should be dark, from shared.css */
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, not var(--header-offset) */
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not text on image */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

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

.page-gdpr__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #3A2A12; /* Border */
}

.page-gdpr__btn-secondary:hover {
  background: #222222;
  border-color: #FFD36B;
  transform: translateY(-2px);
}

.page-gdpr__section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-gdpr__dark-section {
  background-color: #111111; /* Card BG */
}

.page-gdpr__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
  text-align: justify;
}

.page-gdpr__text-block .highlight {
  color: #F2C14E; /* Main color for highlights */
  font-weight: 600;
}

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

.page-gdpr__list-item {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.page-gdpr__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF6D6;
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #F2C14E;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__contact-info {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
  color: #FFF6D6;
}

.page-gdpr__contact-info p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-gdpr__contact-info a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: 600;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__contact-btn {
  margin-top: 30px;
}

.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 8px 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: #F2C14E;
  font-weight: 600;
  font-size: 18px;
}

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: #1a1a1a;
}

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

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

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

.page-gdpr__faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.page-gdpr__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

.page-gdpr__conclusion-section .page-gdpr__section-title {
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons--center {
  margin-top: 40px;
  justify-content: center;
}

.page-gdpr__copyright {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
  background-color: #0A0A0A; /* Background */
  border-top: 1px solid #1a1a1a;
}

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

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(26px, 3.5vw, 40px);
  }
  .page-gdpr__subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
  }
  .page-gdpr__section-title {
    font-size: clamp(22px, 2.8vw, 32px);
  }
  .page-gdpr__card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px; /* Specific small top padding for mobile */
  }
  .page-gdpr__hero-image img {
    object-fit: contain !important; /* HERO: contain for mobile */
    aspect-ratio: unset !important;
    max-height: 400px; /* Adjust max height for mobile hero */
  }
  .page-gdpr__hero-content {
    margin-top: -50px; /* Reduce overlap for mobile */
    padding: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-gdpr__main-title {
    font-size: 28px; /* Fixed font size for mobile H1 */
  }
  .page-gdpr__subtitle {
    font-size: 16px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column; /* Buttons stack vertically */
    gap: 15px;
  }
  .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;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px; /* Add horizontal padding for content */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__card-text,
  .page-gdpr__contact-info p,
  .page-gdpr__faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }
  .page-gdpr__grid-3-col {
    grid-template-columns: 1fr; /* Single column for cards */
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 20px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
  }
  .page-gdpr__contact-info {
    padding: 30px 20px;
  }
  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: 20px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
  }
  /* Generic image responsiveness for all images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Ensuring containers with images are also responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  /* For decorative titles + long text SEO area (general text blocks) */
  .page-gdpr__text-block, .page-gdpr__list {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}