/* style/gdpr.css */
.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-gdpr__hero-section {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  position: relative;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-gdpr__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--primary:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-gdpr__article {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__article-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #FCBC45;
}

.page-gdpr__cta-section {
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
}

.page-gdpr__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__article-title {
    font-size: 2em;
  }
  .page-gdpr__sub-title {
    font-size: 1.6em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 20px 15px;
  }
  .page-gdpr__article-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__cta-section {
    padding: 40px 15px;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  /* Mobile content area image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.7em;
  }
  .page-gdpr__article-title {
    font-size: 1.5em;
  }
  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
  .page-gdpr__cta-title {
    font-size: 1.5em;
  }
  .page-gdpr__button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    width: fit-content;
  }
}