.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* For desktop */
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-image {
  margin-bottom: 40px;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  min-width: 200px; /* Ensure button is not too small */
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__button--register:hover {
  background-color: #f0f0f0;
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__button--login:hover {
  background-color: #e0a53b;
}

.page-gdpr__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a53b;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__right-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-gdpr__card-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.page-gdpr__card-link:hover {
  color: #FCBC45;
}

.page-gdpr__image-container {
  text-align: center;
  margin: 50px 0;
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__contact-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__contact-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px dashed #FCBC45;
  transition: color 0.3s ease;
}

.page-gdpr__contact-item a:hover {
  color: #FCBC45;
}

.page-gdpr__contact-callout {
  text-align: center;
  margin: 60px 0;
  padding: 40px 20px;
  background-color: #000000;
  border-radius: 8px;
  color: #FFFFFF;
}

.page-gdpr__contact-callout img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding: 40px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__paragraph {
    text-align: left;
  }

  .page-gdpr__image-container img,
  .page-gdpr__contact-callout img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-gdpr__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}