body {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding to avoid header overlap */
  margin-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no image filters */
}

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

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #F3C54D; /* Gold */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark background for text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
  background-color: #2A1212; /* Card BG */
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #F3C54D; /* Gold */
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-gdpr__paragraph {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
  color: #FFF1E8;
}

.page-gdpr__image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Ensure no image filters */
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__image--right {
  order: 2;
}

.page-gdpr__image--left {
  order: 1;
}

.page-gdpr__about-gdpr .page-gdpr__content-wrapper {
  flex-direction: column;
}

.page-gdpr__about-gdpr .page-gdpr__image {
  order: 1;
  margin-bottom: 20px;
  max-width: 800px; /* Allow wider image in this section */
}

.page-gdpr__about-gdpr .page-gdpr__paragraph:nth-of-type(1) {
  order: 2;
}

.page-gdpr__about-gdpr .page-gdpr__paragraph:nth-of-type(2) {
  order: 3;
}

.page-gdpr__user-rights .page-gdpr__content-wrapper {
  flex-direction: column;
}

.page-gdpr__user-rights .page-gdpr__image {
  order: 1;
  margin-bottom: 20px;
  max-width: 800px; /* Allow wider image in this section */
}

.page-gdpr__user-rights .page-gdpr__paragraph:nth-of-type(1) {
  order: 2;
}

.page-gdpr__user-rights .page-gdpr__rights-list {
  order: 3;
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 15px;
  color: #FFF1E8;
  flex: 1;
  min-width: 300px;
}

.page-gdpr__rights-list .page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__rights-list .page-gdpr__list-item strong {
  color: #F3C54D; /* Gold for emphasis */
}

.page-gdpr__user-rights .page-gdpr__paragraph:nth-of-type(2) {
  order: 4;
}

.page-gdpr__contact-us .page-gdpr__content-wrapper {
  flex-direction: column;
}

.page-gdpr__contact-us .page-gdpr__image {
  order: 2;
  margin-top: 20px;
  max-width: 800px; /* Allow wider image in this section */
}

.page-gdpr__contact-us .page-gdpr__paragraph:nth-of-type(1) {
  order: 1;
}

.page-gdpr__contact-us .page-gdpr__paragraph:nth-of-type(2) {
  order: 3;
}

.page-gdpr__inline-link {
  color: #F3C54D; /* Gold for inline links */
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: #FFB04A; /* Lighter gold on hover */
}

.page-gdpr__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  order: 4;
  justify-content: center;
  width: 100%;
}

.page-gdpr__cta-button--secondary {
  background: #7E0D0D; /* Deep Red */
  color: #FFF1E8;
}

.page-gdpr__cta-button--secondary:hover {
  background: #C61F1F; /* Primary Red */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 849px) {
  .page-gdpr__hero-image-wrapper img {
    aspect-ratio: 16/9;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    order: unset; /* Reset order for mobile */
    margin-bottom: 20px;
    max-width: 100%;
  }

  .page-gdpr__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image {
    max-width: 100%;
  }

  .page-gdpr__about-gdpr .page-gdpr__image,
  .page-gdpr__user-rights .page-gdpr__image,
  .page-gdpr__contact-us .page-gdpr__image {
    order: unset;
    margin-bottom: 20px;
  }

  .page-gdpr__rights-list {
    padding-left: 20px;
  }

  .page-gdpr__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

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

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

  .page-gdpr__intro-text,
  .page-gdpr__paragraph,
  .page-gdpr__list-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 549px) {
  .page-gdpr {
    padding: 0 10px;
  }

  .page-gdpr__section {
    padding: 25px;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.1rem, 6vw, 1.6rem);
  }

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