.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark background */
  background-color: #08160F; /* Main background */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-container {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  color: #F2FFF6;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-gdpr__hero-description {
  color: #A7D9B8;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

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

.page-gdpr__content-section,
.page-gdpr__rights-section,
.page-gdpr__policy-section,
.page-gdpr__faq-section {
  background-color: #08160F; /* Main background */
  color: #F2FFF6;
  padding: 60px 0;
}

.page-gdpr__security-section,
.page-gdpr__conclusion-section {
  background-color: #0A4B2C; /* Deep Green for darker sections */
  color: #F2FFF6;
  padding: 60px 0;
}

.page-gdpr__card-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  padding: 60px 0;
}

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

.page-gdpr__section-title {
  color: #F2FFF6;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text-block {
  color: #A7D9B8;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-gdpr__text-main {
  color: #F2FFF6;
}

.page-gdpr__text-secondary {
  color: #A7D9B8;
}

.page-gdpr__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-item {
  background-color: #08160F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__feature-image,
.page-gdpr__security-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-gdpr__item-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-gdpr__rights-item {
  background-color: #11271B;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

.page-gdpr__rights-title {
  color: #F2FFF6;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-gdpr__rights-description {
  color: #A7D9B8;
  font-size: 0.95rem;
}

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

.page-gdpr__security-item {
  background-color: #11271B;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2E7A4E;
}

.page-gdpr__sub-title {
  color: #F2FFF6;
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__contact-info {
  background-color: #08160F;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  border: 1px solid #2E7A4E;
}

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

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-gdpr__contact-link {
  color: #2AD16F; /* Brighter green for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #57E38D; /* Glow color on hover */
  text-decoration: underline;
}

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

.page-gdpr__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6;
  font-size: 1.15rem;
  font-weight: bold;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #0A4B2C;
}

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__grid-container,
  .page-gdpr__rights-list,
  .page-gdpr__security-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__hero-content {
    padding: 0 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__text-block {
    font-size: 0.95rem;
  }
  .page-gdpr__sub-title {
    font-size: 1.5rem;
  }
  .page-gdpr__grid-item,
  .page-gdpr__rights-item,
  .page-gdpr__security-item,
  .page-gdpr__contact-info,
  .page-gdpr__faq-item {
    padding: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile container responsiveness */
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__content-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__policy-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section,
  .page-gdpr__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Mobile button responsiveness */
  .page-gdpr__btn-primary,
  .page-gdpr__cta-button {
    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;
  }
  
  /* If multiple buttons, ensure wrapping */
  .page-gdpr__button-group {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
  }
}