.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E5E5E5; /* Light gray for text on dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E5E5E5;
}

.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;
  font-size: 1em;
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  color: #0d1016;
}

.page-gdpr__button--secondary {
  background-color: #2D3748; /* Darker gray button */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark background for alternating sections */
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__sub-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #E5E5E5;
}

.page-gdpr__commitment .page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-gdpr__commitment .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-gdpr__content-item {
  text-align: center;
}

.page-gdpr__content-item p {
  font-size: 1.1em;
  color: #E5E5E5;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__image--large {
  max-width: 400px;
  margin: 0 auto 30px;
  display: block;
}

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

.page-gdpr__right-card {
  background-color: #1A202C;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__right-card p {
  color: #E5E5E5;
  font-size: 1em;
}

.page-gdpr__action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #FFD700;
}

.page-gdpr__data-processing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 992px) {
  .page-gdpr__data-processing-content {
    flex-direction: row;
    text-align: left;
  }
  .page-gdpr__data-processing-content .page-gdpr__image--large {
    margin: 0;
    flex-shrink: 0;
  }
}

.page-gdpr__text-block h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__text-block p {
  color: #E5E5E5;
  margin-bottom: 20px;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  color: #E5E5E5;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__image--contact {
  max-width: 500px;
  margin: 40px auto 0;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__data-processing-content {
    flex-direction: column;
  }
  .page-gdpr__data-processing-content .page-gdpr__image--large {
    order: -1; /* Image above text on small screens */
  }
}