/* style/gdpr.css */
.page-gdpr {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #11271B; /* Card BG, but used for section for depth */
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__main-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-gdpr__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__section-title {
  color: #57E38D; /* Glow */
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__sub-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-gdpr__text-block {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.page-gdpr__principles-list,
.page-gdpr__rights-list,
.page-gdpr__data-processing,
.page-gdpr__contact-info {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__principles-list p,
.page-gdpr__rights-list p,
.page-gdpr__data-processing p,
.page-gdpr__contact-info p,
.page-gdpr__faq-answer p {
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__link {
  color: #2AD16F; /* Button primary start color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* FAQ Section */
.page-gdpr__faq-section {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green */
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  background-color: #13994A;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-gdpr__description {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  }

  .page-gdpr__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .page-gdpr__principles-list,
  .page-gdpr__rights-list,
  .page-gdpr__data-processing,
  .page-gdpr__contact-info {
    padding: 25px;
  }

  .page-gdpr__faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 18px;
  }
}

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

  .page-gdpr__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles header offset, this is decorative */
  }

  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
  }

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

  .page-gdpr__description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .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 15px;
    font-size: 0.95rem;
  }

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

  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  .page-gdpr__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-gdpr__principles-list,
  .page-gdpr__rights-list,
  .page-gdpr__data-processing,
  .page-gdpr__contact-info {
    padding: 20px;
    margin-top: 25px;
  }

  .page-gdpr__faq-question {
    padding: 15px 18px;
    font-size: 0.95rem;
  }

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

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 20px 10px;
    padding-top: 10px !important;
  }

  .page-gdpr__hero-content {
    padding: 0 10px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-gdpr__description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }

  .page-gdpr__btn-primary {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

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

  .page-gdpr__container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .page-gdpr__text-block {
    font-size: 0.9rem;
  }

  .page-gdpr__principles-list,
  .page-gdpr__rights-list,
  .page-gdpr__data-processing,
  .page-gdpr__contact-info {
    padding: 15px;
    margin-top: 20px;
  }

  .page-gdpr__faq-question {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

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