.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;
  text-align: center;
  padding: 10px 0 60px;
  overflow: hidden;
  color: var(--text-main);
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -120px; /* Adjust to place content slightly over image bottom */
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--gold);
}

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

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

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-gdpr__introduction-section, 
.page-gdpr__user-rights-section, 
.page-gdpr__security-measures-section, 
.page-gdpr__cta-section {
  padding: 80px 0;
}

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

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

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

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-gdpr__text-block a, .page-gdpr__text-link {
  color: var(--glow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-block a:hover, .page-gdpr__text-link:hover {
  color: var(--gold);
}

.page-gdpr__principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-gdpr__principle-card {
  background-color: var(--deep-green);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__principle-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--glow);
}

.page-gdpr__card-description {
  font-size: 1em;
  color: var(--text-secondary);
}

.page-gdpr__btn-secondary {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 25px;
  border-radius: 50px;
  background-color: #FFFFFF;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: bold;
  border: 2px solid var(--deep-green);
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-secondary:hover {
  background-color: var(--deep-green);
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__right-item {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__right-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr__right-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--glow);
}

.page-gdpr__right-description {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-gdpr__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-gdpr__list-item {
  background-color: var(--deep-green);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__list-item::before {
  content: '✔';
  color: var(--glow);
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-gdpr__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-gdpr__feature-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__feature-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr__feature-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--glow);
}

.page-gdpr__feature-description {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__faq-item {
  background-color: var(--deep-green);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: rgba(var(--deep-green-rgb), 0.8);
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: var(--glow);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-gdpr__cta-content {
  text-align: center;
  background-color: var(--card-bg);
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-button--large {
  font-size: 1.3em;
  padding: 18px 40px;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 40px;
  }
  .page-gdpr__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
    max-width: 90%;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__introduction-section, 
  .page-gdpr__principles-section, 
  .page-gdpr__user-rights-section, 
  .page-gdpr__data-processing-section, 
  .page-gdpr__security-measures-section, 
  .page-gdpr__faq-section, 
  .page-gdpr__cta-section {
    padding: 60px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-list, .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__principle-card, .page-gdpr__right-item, .page-gdpr__feature-card {
    padding: 20px;
  }
  .page-gdpr__card-title, .page-gdpr__right-title, .page-gdpr__feature-title {
    font-size: 1.3em;
  }
  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__card-description, .page-gdpr__right-description, .page-gdpr__feature-description {
    font-size: 0.95em;
  }
  .page-gdpr__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  .page-gdpr__cta-content {
    padding: 40px 20px;
  }
  .page-gdpr__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  /* Mobile specific image/video/button rules */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__principle-image, .page-gdpr__right-icon, .page-gdpr__content-image, .page-gdpr__feature-icon {
    max-width: 100% !important;
    width: auto !important; /* Allow width to be auto for smaller icons to scale */
    height: auto !important;
  }
  .page-gdpr__principle-image { max-width: 200px !important; }
  .page-gdpr__right-icon { max-width: 80px !important; }
  .page-gdpr__feature-icon { max-width: 80px !important; }
  .page-gdpr__cta-button, .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-content, .page-gdpr__cta-content, .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    margin-top: -40px;
  }
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-gdpr__faq-item summary {
    font-size: 1em;
  }
}

/* Color variables for easier management and adherence to scheme */
: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-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
  --deep-green-rgb: 10, 75, 44; /* RGB for rgba usage */
}