.page-gdpr {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for main content */
}

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

.page-gdpr__hero-section {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  background-color: #11271B; /* Card BG for hero section */
  padding-bottom: 20px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/5; /* For 1920x600 */
}

.page-gdpr__hero-content {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2FFF6;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #F2C14E; /* Gold for main section titles */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #F2C14E;
  margin: 15px auto 0 auto;
}

.page-gdpr__introduction-section p,
.page-gdpr__rights-section p,
.page-gdpr__contact-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px;
  object-fit: cover;
}

.page-gdpr__principles-section {
  background-color: #11271B; /* Card BG */
  padding: 40px 0;
  margin-top: 40px;
}

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

.page-gdpr__grid-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__grid-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__grid-item p {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

.page-gdpr__rights-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1rem;
  color: #F2FFF6;
}

.page-gdpr__rights-list li strong {
  color: #F2C14E; /* Gold */
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: #F2FFF6;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-gdpr__button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr__contact-section {
  margin-top: 40px;
  padding-bottom: 60px;
}

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

.page-gdpr__related-links li {
  margin-bottom: 10px;
}

.page-gdpr__related-links a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__related-links a:hover {
  color: #F2C14E; /* Gold on hover */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 4.5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__hero-content {
    padding: 15px;
  }

  .page-gdpr__hero-image {
    aspect-ratio: 16/9; /* Adjust for mobile hero */
  }

  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }

  /* Enforce mobile image scaling */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__grid-item {
    padding: 20px;
  }

  .page-gdpr__rights-list li {
    padding: 12px 15px;
  }
}

@media (max-width: 549px) {
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .page-gdpr__description {
    font-size: 0.95rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
  }

  .page-gdpr__introduction-section p,
  .page-gdpr__rights-section p,
  .page-gdpr__contact-section p {
    font-size: 0.9rem;
  }

  .page-gdpr__grid-title {
    font-size: 1.2rem;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}