.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  padding-bottom: 50px;
}

.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: linear-gradient(135deg, #C91F17, #E53935);
  color: #FFF5E1;
}

.page-gdpr__hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold-like for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-description {
  font-size: clamp(1em, 1.8vw, 1.2em);
  max-width: 800px;
  margin: 0 auto;
  color: #FFF5E1;
}

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 30px;
  background-color: #B71C1C;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section--intro {
  background-color: #7A0E0E; /* Deep Red */
}

.page-gdpr__section--principles {
  background-color: #D32F2F; /* Card BG */
}

.page-gdpr__section--rights {
  background-color: #B71C1C; /* Background */
}

.page-gdpr__section--implementation {
  background-color: #C91F17; /* Main color */
}

.page-gdpr__section--cookies {
  background-color: #D32F2F; /* Card BG */
}

.page-gdpr__section--contact {
  background-color: #7A0E0E; /* Deep Red */
}

.page-gdpr__section--faq {
  background-color: #B71C1C; /* Background */
}

.page-gdpr__section--updates {
  background-color: #C91F17; /* Main color */
}

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

.page-gdpr__heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 600;
  color: #FFCC66; /* Glow */
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subheading {
  font-size: clamp(1em, 1.5vw, 1.1em);
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1;
}

.page-gdpr__content-area {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.page-gdpr__content-area--text-image .page-gdpr__text-block {
  flex: 2;
}

.page-gdpr__content-area--text-image-reverse .page-gdpr__text-block {
  flex: 2;
  order: 2;
}

.page-gdpr__image-block {
  flex: 1;
  text-align: center;
}

.page-gdpr__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
}

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

.page-gdpr strong {
  color: #F4D34D; /* Gold */
}

.page-gdpr__list-principles,
.page-gdpr__list-rights,
.page-gdpr__list-security,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__list-item {
  background-color: #D32F2F; /* Card BG */
  border-left: 5px solid #F2B544; /* Border */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-item h3 {
  color: #F4D34D; /* Gold */
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-gdpr__list-item p {
  color: #FFF5E1;
}

.page-gdpr__list-rights li,
.page-gdpr__list-security li,
.page-gdpr__contact-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid #FFCC66; /* Glow */
  color: #FFF5E1;
}

.page-gdpr__list-rights li strong,
.page-gdpr__list-security li strong,
.page-gdpr__contact-list li strong {
  color: #F4D34D;
}

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

.page-gdpr__card {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
}

.page-gdpr__card h3 {
  color: #F4D34D; /* Gold */
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
  align-self: center;
  display: block;
}

.page-gdpr__link {
  color: #FFD86A; /* Brighter gold for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFCC66; /* Glow on hover */
}

.page-gdpr__last-updated {
  text-align: right;
  font-style: italic;
  color: #FFF5E1;
  margin-top: 40px;
}

/* FAQ Styles */
details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}
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;
}
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: #C91F17; /* Main color on hover */
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F4D34D; /* Gold */
}
.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Gold-like for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: #B71C1C; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1;
}
.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__content-area {
    flex-direction: column;
  }
  .page-gdpr__content-area--text-image-reverse .page-gdpr__text-block {
    order: unset;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-gdpr__subheading {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__image-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__content-area,
  .page-gdpr__grid {
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

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

  /* Mobile button responsiveness */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Ensure all image containers are responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}