.page-gdpr {
  color: #F2FFF6; /* Default text color for the page */
  background-color: #08160F; /* Overall background from custom palette */
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Approximately 10px top padding for hero */
  padding-bottom: 0;
  background-color: #08160F;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align items to the start for image first */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  width: 100%;
  max-width: 1400px; /* Max width for content */
  padding: 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px; /* Adjust based on hero-container max-width */
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  color: #F2FFF6;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__btn-primary {
  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 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  color: #F2FFF6; /* Main text color for content area */
  background-color: #08160F;
}

.page-gdpr__section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold color for titles */
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__section-title--white {
  color: #F2FFF6;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__text-block--white {
  color: #F2FFF6;
}

.page-gdpr__section {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr__dark-section {
  background-color: #0A4B2C; /* Deep Green for dark sections */
  color: #F2FFF6;
}

.page-gdpr__data-list,
.page-gdpr__data-usage-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__data-item,
.page-gdpr__data-usage-list li,
.page-gdpr__security-list li {
  background-color: #08160F; /* Background color */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 5px solid #2AD16F; /* Highlight with button color */
  color: #A7D9B8;
}

.page-gdpr__data-item:last-child,
.page-gdpr__data-usage-list li:last-child,
.page-gdpr__security-list li:last-child {
  margin-bottom: 0;
}

.page-gdpr__data-subtitle {
  font-size: 1.3em;
  font-weight: bold;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 10px;
}

.page-gdpr__data-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-gdpr__data-usage-list strong {
  color: #F2FFF6;
}

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

.page-gdpr__faq-item {
  background-color: #08160F; /* Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #A7D9B8;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Main text color */
  font-size: 1.1em;
  list-style: none;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-gdpr__faq-answer {
  padding: 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-gdpr__image-content--right {
  float: right;
  margin-left: 30px;
  max-width: 50%;
}

.page-gdpr__image-content--left {
  float: left;
  margin-right: 30px;
  max-width: 50%;
}

.page-gdpr__link-text {
  color: #2AD16F; /* Button color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link-text:hover {
  text-decoration: underline;
}

.page-gdpr__contact-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__contact-info li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-gdpr__contact-info strong {
  color: #F2FFF6;
}

.page-gdpr__conclusion-section {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* --- Divider --- */
.page-gdpr__divider {
  height: 1px;
  background-color: #1E3A2A; /* Divider color */
  margin: 40px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__content-area {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__image-content--right,
  .page-gdpr__image-content--left {
    max-width: 100%;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Fixed top padding */
  }

  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }

  .page-gdpr__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
  }

  .page-gdpr__section {
    padding: 20px;
    margin-bottom: 40px;
  }

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

  /* Containers for images and content to prevent overflow */
  .page-gdpr__hero-container,
  .page-gdpr__section,
  .page-gdpr__content-area,
  .page-gdpr__data-item,
  .page-gdpr__data-usage-list li,
  .page-gdpr__security-list li,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__data-subtitle {
    font-size: 1.1em;
  }

  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-gdpr__faq-answer {
    padding: 15px;
  }

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