/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  /* body handles --header-offset, so first section has small top padding */
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding: var(--header-offset, 120px) 0 60px; /* Desktop padding-top with fallback */
  text-align: center;
  color: #000000; /* Dark text on light gradient */
}

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

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000000;
}

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

.page-gdpr__text-link {
  color: #FFD36B;
  text-decoration: underline;
}

.page-gdpr__text-link:hover {
  color: #F2C14E;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text on button */
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  color: #0A0A0A;
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #0A0A0A; /* Dark text on button */
  border: 2px solid #0A0A0A; /* Dark border on light background */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
}

.page-gdpr__btn--large {
  padding: 15px 40px;
  font-size: 1.1em;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2C14E; /* Main color for titles */
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFD36B; /* Auxiliary color for sub-titles */
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  color: #FFF6D6;
}

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

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
  width: 40%; /* Adjust as needed */
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
  width: 40%; /* Adjust as needed */
}