/* style/gdpr.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #28a745;
  --accent-color: #ffc107;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-light: #f8f9fa;
  --border-light: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
}

/* Padding for fixed header */
.page-gdpr__hero-banner {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

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

.page-gdpr__hero-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  display: block;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

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

.page-gdpr__text-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-gdpr__text-block h2 {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__text-block h3 {
  font-size: 1.5em;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

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

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__cta-block {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: var(--text-light);
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.highlight {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text-block h2 {
    font-size: 1.7em;
  }
  .page-gdpr__text-block h3 {
    font-size: 1.3em;
  }
  .page-gdpr__text-block p,
  .page-gdpr__list-item {
    font-size: 1em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-banner {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding: 60px 15px 30px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__text-block {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
  .page-gdpr__text-block h2 {
    font-size: 1.5em;
  }
  .page-gdpr__text-block h3 {
    font-size: 1.2em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__cta-block {
    padding: 30px 20px;
    margin-top: 30px;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  
  /* Mobile image responsive fix */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__text-block,
  .page-gdpr__hero-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__cta-title {
    font-size: 1.6em;
  }
}