.page-gdpr {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text must be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: #0a0a0a; /* Ensure dark background for contrast */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background-color: #1e87b7;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #26A9E0;
}

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

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

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

.page-gdpr__introduction-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background */
}

.page-gdpr__principles-section,
.page-gdpr__processing-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: rgba(38, 169, 224, 0.1); /* Slightly lighter dark background for contrast */
}

.page-gdpr__principles-grid,
.page-gdpr__processing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-gdpr__principle-card,
.page-gdpr__processing-card {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle light background for cards */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__principle-card p,
.page-gdpr__processing-card p {
  color: #cccccc;
  font-size: 0.95rem;
}

.page-gdpr__principles-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  color: #f0f0f0;
  font-size: 1rem;
}

.page-gdpr__rights-list li strong {
  color: #26A9E0;
}

.page-gdpr__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__security-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__security-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-gdpr__security-item p {
  color: #cccccc;
  font-size: 0.95rem;
}

.page-gdpr__contact-section .page-gdpr__btn-primary {
  margin-top: 20px;
}

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

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-gdpr__faq-item details {
  /* For native details tag */
  padding: 0;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For summary element */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

  .page-gdpr__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-gdpr__introduction-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__processing-section,
  .page-gdpr__security-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section {
    padding: 40px 0;
  }

  .page-gdpr__principles-grid,
  .page-gdpr__processing-grid,
  .page-gdpr__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__principle-card,
  .page-gdpr__processing-card,
  .page-gdpr__security-item {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.2rem;
  }

  .page-gdpr__text-block,
  .page-gdpr__rights-list li,
  .page-gdpr__principle-card p,
  .page-gdpr__processing-card p,
  .page-gdpr__security-item p,
  .page-gdpr__faq-answer p {
    font-size: 0.9rem;
  }

  .page-gdpr__security-icon {
    width: 150px;
    height: 150px;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__principles-image,
  .page-gdpr__security-item,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__principles-grid,
  .page-gdpr__processing-grid,
  .page-gdpr__security-grid,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons mobile responsiveness */
  .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;
  }
}

/* General link color for dark backgrounds */
.page-gdpr a {
  color: #26A9E0;
  text-decoration: none;
}

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

/* Specific colors from palette */
.page-gdpr__login-button {
  background-color: #EA7C07;
  color: #FFFFFF;
}

.page-gdpr__login-button:hover {
  background-color: #c76706;
}

.page-gdpr__background-element {
  background-color: #FFFFFF;
}

.page-gdpr__text-black {
  color: #000000;
}