.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #FFF3E6); /* Default text color for dark body */
  background-color: var(--background-color, #0D0E12); /* Default body background */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  color: var(--text-main-color, #FFF3E6);
  background: var(--background-color, #0D0E12);
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr__hero-content h1 {
  color: var(--text-main-color, #FFF3E6);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive H1 font size */
}

.page-gdpr__hero-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color, #FFF3E6);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__light-bg {
  background-color: var(--light-background-color, #ffffff);
  color: #333333; /* Dark text for light background */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__text-block,
.page-gdpr__light-bg .page-gdpr__list-item h3,
.page-gdpr__light-bg .page-gdpr__list-item p,
.page-gdpr__light-bg .page-gdpr__contact-info p,
.page-gdpr__light-bg .page-gdpr__contact-info ol li {
  color: #333333;
}

.page-gdpr__dark-bg {
  background-color: var(--background-color, #0D0E12);
  color: var(--text-main-color, #FFF3E6);
}

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

.page-gdpr__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

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

.page-gdpr__card {
  background: var(--card-bg-color, #17191F);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color, #FFF3E6);
  border: 1px solid var(--border-color, #A84F0C);
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
}

.page-gdpr__card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: inherit;
}

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

.page-gdpr__list-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333; /* Dark text for light background */
}

.page-gdpr__list-item h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__list-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-gdpr__contact-info {
  margin-top: 40px;
  text-align: center;
  color: inherit;
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: inherit;
}

.page-gdpr__contact-info strong {
  color: inherit;
}

.page-gdpr__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  text-align: left;
  max-width: 700px;
  margin: 20px auto;
  color: inherit;
}

.page-gdpr__ordered-list li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: inherit;
}

.page-gdpr__cta-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--background-color, #0D0E12);
  color: var(--text-main-color, #FFF3E6);
}

.page-gdpr__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__cta-content h2 {
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 20px;
}

.page-gdpr__cta-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-main-color, #FFF3E6);
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image img {
    border-radius: 4px;
  }

  .page-gdpr__hero-content h1 {
    font-size: clamp(24px, 7vw, 36px);
  }

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

  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 20px;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
  }

  .page-gdpr__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.3em;
  }

  .page-gdpr__card p {
    font-size: 0.9em;
  }

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

  .page-gdpr__list-item h3 {
    font-size: 1.15em;
  }

  .page-gdpr__list-item p {
    font-size: 0.95em;
  }

  .page-gdpr__contact-info p {
    font-size: 1em;
  }

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

  .page-gdpr__cta-section {
    padding: 60px 15px;
  }

  .page-gdpr__cta-content p {
    font-size: 1.05em;
  }

  /* Image responsiveness for mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__hero-image img,
  .page-gdpr__card-image {
    min-width: unset;
    min-height: unset;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__grid-layout,
  .page-gdpr__list-item,
  .page-gdpr__contact-info,
  .page-gdpr__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Custom colors */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --light-background-color: #ffffff; /* For sections requiring light background with dark text */
}

/* Ensure contrast for light background sections */
.page-gdpr__light-bg p, .page-gdpr__light-bg li, .page-gdpr__light-bg h2, .page-gdpr__light-bg h3 {
  color: #333333; /* Ensure dark text on light background */
}

.page-gdpr__light-bg .page-gdpr__list-item {
  background: #f9f9f9;
}

.page-gdpr__ordered-list li {
  color: #333333;
}

/* No CSS filter for images */
.page-gdpr img {
  filter: none; /* Ensure no filter is applied */
}