.page-gdpr {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Explicitly setting background for content area */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-gdpr {
    overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
  }
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  gap: 40px;
  background-color: #000000; /* Dark background for the hero section */
  color: #FFFFFF; /* Light text on dark hero background */
}

@media (min-width: 769px) {
  .page-gdpr__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }
}

.page-gdpr__hero-content {
  flex: 1;
  max-width: 700px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

@media (max-width: 768px) {
  .page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
  }
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-gdpr__section {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 25px;
  color: #000000; /* Main color for headings */
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
}

.page-gdpr__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__list-item {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }
}

.page-gdpr__contact-info {
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #333333;
}

.page-gdpr__link {
  color: #000000; /* Main color for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #FFD700; /* A brighter gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__cta-button--inline {
  margin-left: 20px;
  margin-top: 0;
}

.page-gdpr__secondary-button {
  display: inline-block;
  background-color: #000000; /* Main color for secondary buttons */
  color: #FFFFFF; /* Light text on dark button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  border: 1px solid #000000;
  cursor: pointer;
}

.page-gdpr__secondary-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-gdpr__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 769px) {
  .page-gdpr__hero-content {
    order: 1;
  }
  .page-gdpr__hero-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__section {
    padding: 20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__contact-info {
    font-size: 0.95em;
  }
  .page-gdpr__cta-button, .page-gdpr__secondary-button {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .page-gdpr__button-group {
    flex-direction: column;
    align-items: center;
  }
}