/* style/gdpr.css */

:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light: #f5f5f5;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default to light text for dark body background */
  background-color: var(--background-dark);
}

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

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 0 60px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background: var(--primary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__main-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

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

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

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

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

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

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

.page-gdpr__text-block p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-gdpr__text-block strong {
  color: var(--primary-color);
}

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

.page-gdpr__list li {
  margin-bottom: 8px;
  font-size: 16px;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__text-block a:hover {
  color: var(--secondary-color);
}

.page-gdpr__cta-section {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-gdpr__cta-button--large {
  padding: 18px 40px;
  font-size: 20px;
}

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

  .page-gdpr__section-title {
    font-size: 28px;
  }

  .page-gdpr__cta-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding: 60px 0 40px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

  .page-gdpr__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

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

  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-gdpr__text-block {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-gdpr__text-block p,
  .page-gdpr__list li {
    font-size: 15px;
  }

  .page-gdpr__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Enforce minimum size */
    min-height: 200px !important; /* Enforce minimum size */
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

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

  .page-gdpr__cta-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-button--large {
    padding: 15px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }

  .page-gdpr__section-title {
    font-size: 22px;
  }

  .page-gdpr__cta-title {
    font-size: 24px;
  }
}