.page-gdpr {
  background-color: #F4F7FB; /* Custom Background */
  color: #1F2D3D; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding to avoid double header offset */
  background-color: #0a0909; /* Deep red/burgundy base, adjusted for contrast */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 40px;
}

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #d6d604; /* Yellow-green accent */
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (min-width: 769px) {
  .page-gdpr__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

.page-gdpr__description-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #F4F7FB; /* Custom Background */
  border-bottom: 1px solid #D6E2FF; /* Custom Border */
}

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

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

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #1F2D3D; /* Custom Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__section-description {
  font-size: 1.05rem;
  color: #1F2D3D; /* Custom Text Main */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__card {
  background-color: #FFFFFF; /* Custom Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 0 0 4px #A5C4FF; /* Custom Glow */
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-text {
  font-size: 1rem;
  color: #1F2D3D; /* Custom Text Main */
}

.page-gdpr__image-content-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-gdpr__content-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-block {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

.page-gdpr__list-item {
  background-color: #FFFFFF; /* Custom Card BG */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #6FA3FF; /* Accent color */
  color: #1F2D3D; /* Custom Text Main */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-gdpr__list-item strong {
  color: #2F6BFF; /* Main Color */
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #FFFFFF; /* Ensure text is white for contrast */
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
}

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

.page-gdpr__contact-text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 10px;
  color: #1F2D3D; /* Custom Text Main */
}

.page-gdpr__contact-link {
  color: #2F6BFF; /* Main Color */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 15px;
  }

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

  .page-gdpr__section-description {
    font-size: 1rem;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image-content-flex {
    flex-direction: column;
  }

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

  /* Mobile image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

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

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

  .page-gdpr__card-text {
    font-size: 0.9rem;
  }

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

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