:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f8f8; /* A slightly off-white for sections */
  --border-color: #e0e0e0;
  --button-login-color: #EA7C07;
}

/* Base styles for the GDPR page content */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light backgrounds */
  background-color: var(--background-light); /* Default light background for the page */
}

/* Content sections */
.page-gdpr__content-section {
  padding: 60px 20px;
  margin-bottom: 0; /* Ensure no extra margin */
}

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

/* Section background colors */
.page-gdpr__light-bg {
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-gdpr__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

/* Headings */
.page-gdpr__main-title {
  font-size: 3em;
  font-weight: 700;
  color: var(--text-color-light); /* Specific for hero section */
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Paragraphs */
.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__intro-description {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

/* Lists */
.page-gdpr__list,
.page-gdpr__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-gdpr__list li,
.page-gdpr__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list li strong,
.page-gdpr__ordered-list li strong {
  color: inherit; /* Inherit color from parent section */
}

/* Links */
.page-gdpr a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #1a7fb3; /* A darker shade of primary-color */
}

.page-gdpr__contact-link {
  color: var(--text-color-light); /* For links in dark sections */
  text-decoration: underline;
}

.page-gdpr__contact-link:hover {
  color: var(--secondary-color);
}

/* Images */
.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Hero Section - No actual image, just content and a CTA */
.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: var(--primary-color); /* Use primary color as background */
  min-height: 350px;
  box-shadow: inset 0 -5px 15px rgba(0,0,0,0.1);
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-color-light);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login-color); /* Using login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #c26706; /* A darker shade */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
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: var(--text-color-dark);
  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: var(--background-light);
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
}
.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  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: var(--background-light);
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
  font-size: 1em;
}

/* Contact Info */
.page-gdpr__contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}
.page-gdpr__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-color-light);
}
.page-gdpr__contact-info strong {
  color: var(--text-color-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr p, .page-gdpr__list li, .page-gdpr__ordered-list li {
    font-size: 1em;
  }
  .page-gdpr__intro-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__content-section {
    padding: 40px 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em; /* Adjusted for mobile */
    margin-bottom: 15px;
  }
  .page-gdpr__intro-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-gdpr__sub-title {
    font-size: 1.3em;
  }
  .page-gdpr p, .page-gdpr__list li, .page-gdpr__ordered-list li {
    font-size: 0.95em;
  }

  /* Images responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
  }
  
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive */
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Keep small top padding */
    padding-bottom: 30px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question { padding: 15px; }
  .page-gdpr__faq-qtext { font-size: 1em; }
  details.page-gdpr__faq-item .page-gdpr__faq-answer { padding: 0 15px 15px; }

  .page-gdpr__contact-info {
    padding: 20px;
  }
  .page-gdpr__contact-info p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
}