.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-gdpr__hero-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #B80000;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #B80000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background-color: #FFD700;
  color: #B80000;
  transform: translateY(-3px);
}

.page-gdpr__overview-section, .page-gdpr__principles-section, .page-gdpr__security-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
  padding: 60px 0;
}

.page-gdpr__overview-section {
  background-color: #ffffff;
}

.page-gdpr__principles-section {
  background-color: #f0f0f0;
}

.page-gdpr__security-section {
  background-color: #ffffff;
}

.page-gdpr__rights-section {
  background-color: #f0f0f0;
}

.page-gdpr__contact-section {
  background-color: #ffffff;
  text-align: center;
}

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

.page-gdpr__section-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__principle-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

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

.page-gdpr__card-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__security-content, .page-gdpr__rights-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-gdpr__security-content:nth-child(even) {
    flex-direction: row-reverse;
}

.page-gdpr__security-image, .page-gdpr__rights-image, .page-gdpr__contact-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-gdpr__security-text-content, .page-gdpr__rights-text-content {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__learn-more-button, .page-gdpr__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #B80000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.page-gdpr__learn-more-button:hover, .page-gdpr__contact-button:hover {
  background-color: #B80000;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-gdpr__rights-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-gdpr__rights-list strong {
  color: #B80000;
}

.page-gdpr__rights-list a, .page-gdpr__section-text a {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__rights-list a:hover, .page-gdpr__section-text a:hover {
  text-decoration: underline;
}

.page-gdpr__contact-image {
  margin-top: 40px;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__security-content, .page-gdpr__rights-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-gdpr__security-content:nth-child(even) {
      flex-direction: column;
  }
  .page-gdpr__security-image, .page-gdpr__rights-image, .page-gdpr__contact-image,
  .page-gdpr__principle-card img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__hero-section, .page-gdpr__overview-section, .page-gdpr__principles-section, .page-gdpr__security-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
    padding: 40px 0;
  }
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__section-text, .page-gdpr__card-text, .page-gdpr__rights-list {
    font-size: 0.95em;
  }
}