:root {
  --primary-color: #1A2B4C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
}

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Dark body background (#000) requires light text */
  background-color: var(--bg-dark); /* Ensure main content background matches body */
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

/* Hero Section */
.page-gdpr__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d1a33 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-gdpr__hero-cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Content Sections */
.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__dark-section {
  background-color: #0a1429;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-gdpr__paragraph a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.1em;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__list-item strong {
  color: var(--secondary-color);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__image--full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 40%;
}

/* Contact List */
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr__contact-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.page-gdpr__contact-item strong {
  color: var(--secondary-color);
  margin-right: 10px;
}

.page-gdpr__contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Call to Action Wrapper */
.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Disclaimer Section */
.page-gdpr__disclaimer-section {
  background-color: #1a2b4c;
  padding: 40px 0;
  text-align: center;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__disclaimer-section .page-gdpr__section-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-gdpr__disclaimer-section .page-gdpr__paragraph a {
  color: var(--secondary-color);
  font-weight: normal;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

  .page-gdpr__section-title {
    font-size: 2.2em;
  }

  .page-gdpr__sub-title {
    font-size: 1.6em;
  }

  .page-gdpr__image--right {
    max-width: 50%;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }

  .page-gdpr__hero-section {
    padding: 60px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-gdpr__hero-cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }

  .page-gdpr__sub-title {
    font-size: 1.4em;
    padding: 0 15px;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list,
  .page-gdpr__contact-item {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-gdpr__list {
    margin-left: 30px;
  }

  .page-gdpr__image {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-gdpr__image--right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }

  .page-gdpr__disclaimer-section {
    padding: 30px 15px;
  }

  .page-gdpr__disclaimer-section .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__contact-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .page-gdpr__contact-item strong {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

  .page-gdpr__sub-title {
    font-size: 1.2em;
  }

  .page-gdpr__hero-cta-button,
  .page-gdpr__cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }
}