/* 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-gdpr__hero-content {
  max-width: 900px;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #000000; /* Main color for headings */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
}

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  border: 2px solid transparent;
}

.page-gdpr__button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
  border-color: #000000;
}

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

.page-gdpr__button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  border-color: #FCBC45;
}

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

.page-gdpr__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-gdpr__text-content {
  flex: 2;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure images are not too small */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__commitment-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__commitment-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__commitment-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__commitment-item h3 {
  color: #000000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__commitment-item p {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__commitment-item a {
  color: #000000;
  text-decoration: underline;
}

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

.page-gdpr__image-wrapper--security {
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__rights-grid {
  display: flex;
  flex-direction: row-reverse; /* Image on right */
  gap: 40px;
  align-items: flex-start;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
}

.page-gdpr__rights-item {
  margin-bottom: 30px;
}

.page-gdpr__rights-item h3 {
  color: #000000;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-gdpr__rights-item p {
  font-size: 1.05em;
  color: #555555;
}

.page-gdpr__rights-item a {
  color: #000000;
  text-decoration: underline;
}

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

.page-gdpr__contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.page-gdpr__contact-details p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__contact-details a {
  color: #000000;
  text-decoration: underline;
}

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

.page-gdpr__image-wrapper--contact {
  margin-top: 30px;
  max-width: 600px;
}

.page-gdpr__cta-content {
  background-color: #000000; /* Main color as background */
  color: #FFFFFF; /* Auxiliary color for text */
  padding: 60px 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

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

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

.page-gdpr__button--join {
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for light button */
  border-color: #FCBC45;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__content-grid, .page-gdpr__rights-grid {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-gdpr__image-wrapper--security, .page-gdpr__image-wrapper--contact {
    order: initial;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-gdpr__image-wrapper {
    min-width: 200px;
  }
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-gdpr__commitment-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr__commitment-item h3 {
    font-size: 1.3em;
  }
  .page-gdpr__rights-item h3 {
    font-size: 1.4em;
  }
  .page-gdpr__cta-content {
    padding: 40px 20px;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__contact-details p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-title {
    font-size: 1.6em;
  }
  .page-gdpr__button {
    min-width: unset;
  }
}