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

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

.page-gdpr__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-gdpr__btn {
  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;
  position: relative;
  z-index: 1;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-gdpr__commitment-item,
.page-gdpr__principle-item {
  background-color: #2A323E;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-gdpr__rights-list li {
  background-color: #2A323E;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
}

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

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__image-contact {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 30px auto 0;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-gdpr__commitment-grid,
  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 80px 0;
  }

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}