.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  font-size: 1rem;
}

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow */
  background: rgba(13, 14, 18, 0.85); /* Slightly transparent background for text */
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFF3E6;
  margin-bottom: 30px;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary */
  border: 2px solid #FFA53A;
}

.page-gdpr__btn-secondary:hover {
  background: #FFA53A;
  color: #0D0E12;
  transform: translateY(-3px);
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FF8C1A; /* Main */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 140, 26, 0.3);
}

.page-gdpr__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-gdpr__highlight {
  color: #FFA53A;
  font-weight: 600;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

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

.page-gdpr__link-inline {
  color: #FFA53A;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link-inline:hover {
  color: #FFB04D;
}

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

.page-gdpr__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 26, 0.4);
}

.page-gdpr__card-icon {
  width: 100%;
  max-width: 250px; /* Constrain icon size */
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 1rem;
  color: #FFF3E6;
  flex-grow: 1;
}

.page-gdpr__dark-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
  margin-top: 40px;
  border-top: 1px solid #A84F0C;
  border-bottom: 1px solid #A84F0C;
}

.page-gdpr__dark-bg {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
  margin-top: 40px;
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__text-block,
.page-gdpr__dark-section .page-gdpr__list-item,
.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__text-block,
.page-gdpr__dark-bg .page-gdpr__list-item {
  color: #FFF3E6;
}

.page-gdpr__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 30px;
  }

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

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

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

  .page-gdpr__text-block,
  .page-gdpr__list-item {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }

  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 20px;
    max-width: 90%;
  }

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

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-top: 40px;
    margin-bottom: 25px;
  }

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

  /* Mobile image and video responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  .page-gdpr__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    margin-top: -40px;
    padding: 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 0.9rem;
  }

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

  .page-gdpr__text-block,
  .page-gdpr__list-item {
    font-size: 0.9rem;
  }
}