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

.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 for first section */
  background-color: #0A4B2C; /* Deep Green for hero background */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

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

.page-gdpr__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

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

.page-gdpr__section {
  padding: 80px 20px;
  background-color: #08160F; /* Background */
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #11271B; /* Card B G for alternating sections */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block p,
.page-gdpr__principles-grid p,
.page-gdpr__rights-list p,
.page-gdpr__security-grid p,
.page-gdpr__commitment-list li {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-gdpr__text-block ul,
.page-gdpr__commitment-list {
  list-style-type: disc;
  margin-left: 25px;
  color: #F2FFF6;
}

.page-gdpr__commitment-list li strong {
  color: #57E38D; /* Glow */
}

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

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

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__principle-card,
.page-gdpr__security-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-title,
.page-gdpr__security-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__security-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-gdpr__rights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-gdpr__right-item {
  background-color: #11271B; /* Card B G */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E;
}

.page-gdpr__right-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  background-color: #1E3A2A; /* Divider for summary background */
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary:hover {
  background-color: #2E7A4E; /* Border on hover */
}

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

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

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

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr 400px;
  }
  .page-gdpr__content-grid:nth-of-type(even) .page-gdpr__text-block {
    order: 2;
  }
  .page-gdpr__content-grid:nth-of-type(even) .page-gdpr__image-wrapper {
    order: 1;
  }
  .page-gdpr__rights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

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

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

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

  .page-gdpr__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

  .page-gdpr__principles-grid,
  .page-gdpr__security-grid,
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }

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

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-wrapper,
  .page-gdpr__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-gdpr__hero-image-wrapper {
    margin-bottom: 20px;
  }

  /* Buttons responsive */
  .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;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }

  .page-gdpr__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}