/* style/gdpr.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-dark-secondary: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from body, but explicitly set for clarity */
  overflow-x: hidden;
}

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

/* Top padding to prevent content from being hidden by fixed header */
.page-gdpr__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  padding-bottom: 60px;
  background-color: var(--bg-dark-secondary);
  text-align: center;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

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

.page-gdpr__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

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

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

.page-gdpr p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: var(--text-light);
}

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

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

.page-gdpr__image--large {
  max-width: 80%;
}

.page-gdpr__image--medium {
  max-width: 70%;
}

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

.page-gdpr__contact-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-gdpr__cta-final-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  text-align: center;
  color: #ffffff;
}

.page-gdpr__cta-final-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__cta-final-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button--large {
  padding: 18px 50px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__cta-final-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px; /* Mobile: Adjust based on actual mobile header height */
    padding-bottom: 40px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__image {
    max-width: 95% !important;
  }
  .page-gdpr__image--large {
    max-width: 95% !important;
  }
  .page-gdpr__image--medium {
    max-width: 95% !important;
  }
  .page-gdpr__cta-final-section {
    padding: 60px 0;
  }
  .page-gdpr__cta-final-title {
    font-size: 2em;
  }
  .page-gdpr__cta-final-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button--large {
    padding: 15px 40px;
    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;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr p,
  .page-gdpr li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-final-title {
    font-size: 1.6em;
  }
  .page-gdpr__cta-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }
}