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

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

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FF8C1A; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FF8C1A;
  border-radius: 2px;
}

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

.page-gdpr__text-block strong {
  color: #FFA53A; /* Auxiliary color */
}

/* Hero Section */
.page-gdpr__hero-section {
  padding-top: 10px; /* Small top margin, assuming body has header offset */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  background-color: #0D0E12;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop, will change for mobile */
  aspect-ratio: 16/9; /* Maintain aspect ratio */
}

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

.page-gdpr__main-title {
  font-size: clamp(36px, 4.5vw, 48px); /* Use clamp for H1 */
  font-weight: 800;
  color: #FFF3E6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-description {
  font-size: 20px;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
  transform: translateY(-2px);
}

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

.page-gdpr__btn-secondary:hover {
  background-color: #FFA53A;
  color: #0D0E12; /* Background color for contrast */
  border-color: #FFA53A;
  transform: translateY(-2px);
}

/* General Content Sections */
.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__content-section:nth-child(even) {
  background-color: #17191F; /* Card BG */
}

.page-gdpr__image-container {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__image-container--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}