/* style/gdpr.css */
.page-gdpr {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  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;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A; /* Ensure consistent dark background */
  text-align: center;
}

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

.page-gdpr__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.page-gdpr__hero-description {
  color: #FFF6D6; /* Text Main */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

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

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

.page-gdpr__light-text {
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__section-block {
  background-color: #111111; /* Card BG */
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gdpr__section-title {
  color: #F2C14E; /* Main color */
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__sub-title {
  color: #FFD36B; /* Auxiliary color */
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__text-block ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__text-block li {
  margin-bottom: 8px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__text-block a {
  color: #F2C14E; /* Link color */
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: #FFD36B;
}

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

.page-gdpr__image--right {
  order: 2;
  margin-top: 20px;
}

.page-gdpr__image--left {
  order: 1;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  box-sizing: border-box;
}

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

.page-gdpr__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #2a2a2a;
}

.page-gdpr__faq-title {
  color: #FFF6D6; /* Text Main */
  font-size: 1.2em;
  margin: 0;
}

.page-gdpr__faq-toggle {
  color: #F2C14E; /* Main color */
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-gdpr__section-block {
    flex-direction: row;
    align-items: center;
  }

  .page-gdpr__image--right {
    margin-left: 30px;
    margin-top: 0;
    flex: 0 0 40%;
  }

  .page-gdpr__image--left {
    margin-right: 30px;
    margin-bottom: 0;
    flex: 0 0 40%;
  }

  .page-gdpr__text-block {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }

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

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-gdpr__section-block {
    padding: 20px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__section-block,
  .page-gdpr__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .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;
  }
  
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    margin: 0;
    order: unset;
  }
}