.page-gdpr {
  --primary-color: #E44D26;
  --secondary-color: #FFB800;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000;
  --bg-light-variant: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Main page text color for dark body background */
  background-color: var(--bg-dark); /* Ensure background is dark */
}

/* Fixed nav bar spacing */
.page-gdpr__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

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

.page-gdpr__hero-section {
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__main-title .page-gdpr__link-h1 {
  color: inherit;
  text-decoration: none;
}

.page-gdpr__main-title .page-gdpr__link-h1:hover {
  text-decoration: underline;
}

.page-gdpr__description {
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-gdpr__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
}

.page-gdpr__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-gdpr__cta-button--primary:hover {
  background: #c23e1e; /* Darken primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-gdpr__cta-button--secondary:hover {
  background: #cc9400; /* Darken secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-gdpr__section--gdpr-intro, .page-gdpr__section--rights, .page-gdpr__section--retention {
  background-color: var(--bg-dark);
}

.page-gdpr__section--commitment, .page-gdpr__section--security, .page-gdpr__section--contact {
  background-color: var(--bg-light-variant);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-gdpr__section-title .page-gdpr__link-h2 {
  color: inherit;
  text-decoration: none;
}

.page-gdpr__section-title .page-gdpr__link-h2:hover {
  text-decoration: underline;
}

.page-gdpr__section-subtitle {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__section-subtitle .page-gdpr__link-h3 {
  color: inherit;
  text-decoration: none;
}

.page-gdpr__section-subtitle .page-gdpr__link-h3:hover {
  text-decoration: underline;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.85;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-gdpr__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-block {
  flex: 1;
}

.page-gdpr__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__image-wrapper--center {
  margin-top: 40px;
  flex: none;
  width: 100%;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__image--right {
  margin-left: 20px;
}

.page-gdpr__image--left {
  margin-right: 20px;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.05em;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  opacity: 0.85;
}

.page-gdpr__list-item-title {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-gdpr__list--columns {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr__list--columns li {
  background-color: var(--bg-light-variant);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list--security {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-gdpr__list--security li {
  background-color: var(--bg-dark);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list--security li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: var(--bg-light-variant);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 0.95em;
  line-height: 1.6;
  opacity: 0.8;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 1.1em;
  text-align: center;
}

.page-gdpr__contact-list li {
  margin-bottom: 15px;
}

.page-gdpr__contact-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-gdpr__cta-buttons--center {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    margin: 0;
  }
  .page-gdpr__list--security {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 0.95em !important;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__section-subtitle {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-gdpr__paragraph {
    font-size: 0.95em;
  }
  .page-gdpr__list,
  .page-gdpr__contact-list {
    padding-left: 15px;
  }
  .page-gdpr__list li {
    font-size: 0.95em;
  }
  .page-gdpr__list--columns li {
    padding: 15px;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}
}