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

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

.page-gdpr__section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__dark-section {
  background-color: #2A1212;
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #F3C54D;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-gdpr__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__section-title {
  font-size: clamp(2em, 4vw, 3em);
  color: #F3C54D;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  color: #FFF1E8;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.page-gdpr__card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFF1E8;
  height: 100%;
  box-sizing: border-box;
}

.page-gdpr__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-gdpr__rights-list,
.page-gdpr__measures-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-gdpr__rights-item,
.page-gdpr__measures-item {
  background-color: #140C0C;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFF1E8;
}

.page-gdpr__rights-title,
.page-gdpr__measures-title {
  font-size: 1.4em;
  color: #FFB04A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__rights-text,
.page-gdpr__measures-text {
  font-size: 1em;
  color: #FFF1E8;
}

.page-gdpr__contact-info {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
}

.page-gdpr__contact-email {
  font-size: 1.3em;
  color: #F3C54D;
  margin: 15px 0;
  font-weight: bold;
}

.page-gdpr__contact-text {
  font-size: 1.1em;
  color: #FFF1E8;
  margin-bottom: 20px;
}

.page-gdpr__further-info {
  font-size: 1.1em;
  color: #FFF1E8;
  margin-top: 40px;
}

.page-gdpr__related-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-gdpr__related-links li a {
  color: #FFB04A;
  text-decoration: none;
  font-size: 1.1em;
  padding: 8px 15px;
  border: 1px solid #FFB04A;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__related-links li a:hover {
  background-color: #FFB04A;
  color: #140C0C;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
}

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

.page-gdpr__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #FFB04A;
  color: #140C0C;
}

.page-gdpr__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Universal image styles for responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-gdpr__hero-image {
    max-height: 400px;
    margin-bottom: 15px;
  }

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

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

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

  .page-gdpr__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }

  .page-gdpr__section-intro {
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 30px;
  }

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

  .page-gdpr__principles-grid,
  .page-gdpr__compliance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

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

  .page-gdpr__card-image {
    height: 180px;
  }

  .page-gdpr__rights-item,
  .page-gdpr__measures-item {
    padding: 20px;
  }

  .page-gdpr__rights-title,
  .page-gdpr__measures-title {
    font-size: 1.2em;
  }

  .page-gdpr__contact-info {
    padding: 30px 20px;
  }

  .page-gdpr__contact-email {
    font-size: 1.1em;
  }

  .page-gdpr__related-links {
    flex-direction: column;
    gap: 10px;
  }

  .page-gdpr__related-links li a {
    font-size: 1em;
    padding: 10px 15px;
    width: fit-content;
    margin: 0 auto;
  }

  /* Universal image styles for responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}