.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  color: var(--text-main);
  background-color: var(--card-bg);
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__main-title {
  color: var(--text-main);
  font-size: clamp(2em, 5vw, 3.5em);
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.page-gdpr__subtitle {
  color: var(--text-secondary);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-gdpr__section {
  padding: 80px 0;
  border-bottom: 1px solid var(--divider);
}

.page-gdpr__dark-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-gdpr__light-bg {
  background-color: #0d1e15; /* Slightly lighter than background for contrast */
  color: var(--text-main);
}

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

.page-gdpr__section-title {
  color: var(--gold);
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--glow);
  margin: 15px auto 0;
}

.page-gdpr__sub-section-title {
  color: var(--text-main);
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--deep-green);
  padding-left: 15px;
}

.page-gdpr__paragraph {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--glow);
  font-weight: bold;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
}

.page-gdpr__link {
  color: var(--glow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--gold);
}

.page-gdpr__image-container {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-gdpr__faq-section {
  padding: 80px 0;
  background-color: var(--background);
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1em;
  list-style: none;
  outline: none;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary);
}

.page-gdpr__updated-date {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9em;
  color: var(--text-secondary);
}

/* Base responsive image styles */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base responsive button styles */
.page-gdpr__cta-button,
.page-gdpr a[class*="button"],
.page-gdpr a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Base responsive container styles */
.page-gdpr__container,
.page-gdpr__hero-section,
.page-gdpr__section,
.page-gdpr__faq-section,
.page-gdpr__image-container,
.page-gdpr__faq-list,
.page-gdpr__faq-item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
  }

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

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-gdpr__sub-section-title {
    font-size: 1.5em;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  /* Force responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Force responsive buttons */
  .page-gdpr__cta-button,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Force responsive containers */
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__section,
  .page-gdpr__faq-section,
  .page-gdpr__image-container,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__faq-section {
    padding: 40px 0;
  }

  .page-gdpr__faq-item summary,
  .page-gdpr__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__faq-item summary {
    font-size: 1em;
  }
}

/* Custom colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-gdpr__cta-button {
  background: var(--button-gradient);
}

.page-gdpr__card {
  background-color: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-gdpr__dark-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-gdpr__light-bg {
  background-color: #0d1e15; /* Slightly lighter than background for contrast */
  color: var(--text-main);
}

.page-gdpr__section-title {
  color: var(--gold);
}

.page-gdpr__section-title::after {
  background-color: var(--glow);
}

.page-gdpr__link {
  color: var(--glow);
}

.page-gdpr__link:hover {
  color: var(--gold);
}

.page-gdpr__list-item::before {
  color: var(--glow);
}

.page-gdpr__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
}

.page-gdpr__faq-item summary {
  color: var(--text-main);
}

.page-gdpr__faq-toggle {
  color: var(--glow);
}

.page-gdpr__sub-section-title {
  border-left-color: var(--deep-green);
}