.page-gdpr {
  color: #f0f0f0; /* Body background is dark, so text is light */
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 80px; /* Account for fixed header on desktop */
  background: linear-gradient(135deg, var(--primary-color, #0047AB) 0%, #002D62 100%);
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for prominence */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color, #FFD700); /* Gold button */
  color: var(--primary-color, #0047AB); /* Dark blue text on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-gdpr__cta-button:hover {
  background: #e0b800; /* Darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__content-area {
  background: #1e1e1e; /* Slightly lighter dark background for content area */
  color: #f0f0f0; /* Light text */
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #e0e0e0;
}

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

.page-gdpr__list-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--secondary-color, #FFD700);
  border-radius: 5px;
  font-size: 1.05em;
  color: #f0f0f0;
  line-height: 1.5;
  transition: background-color 0.3s ease;
}

.page-gdpr__list-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-gdpr__list-item strong {
  color: #FFD700;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-gdpr__image--full-width {
  width: 100%;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 45%;
  min-width: 300px; /* Ensure minimum size */
}

/* Ensure images don't overflow in content area */
.page-gdpr__content-area .page-gdpr__image {
  clear: both;
  margin-bottom: 20px;
  width: 100%; /* Default to full width for safety */
  float: none; /* Remove float for default */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 1em;
  }
  .page-gdpr__image--right {
    width: 60%;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px; /* Adjust for mobile fixed header */
    padding-bottom: 60px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    font-size: 1em;
    padding: 12px 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__content-area {
    padding: 20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
    width: 100%;
    display: block;
  }
  
  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-gdpr__list-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.9em;
  }
}