/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background: #0D0E12; /* Background */
}

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and text */
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF3E6;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.page-gdpr__description {
  font-size: 1.1rem;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
  box-sizing: border-box;
}

.page-gdpr__heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFB04D; /* Glow */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: left;
}

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

.page-gdpr__brand-name {
  color: #FFA53A;
  font-weight: bold;
}

.page-gdpr__list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #FFF3E6;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-gdpr__list li strong {
  color: #FFB04D; /* Glow */
}

.page-gdpr__image-container {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  box-sizing: border-box;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info {
  font-style: normal;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  background: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

.page-gdpr__contact-info a {
  color: #FFA53A;
  text-decoration: none;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__link {
  color: #FFA53A;
  text-decoration: none;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__faq-item {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  background: #17191F;
  border-bottom: 1px solid transparent; /* default */
  transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom: 1px solid #A84F0C;
}

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

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

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

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

/* Details tag specific styling */
.page-gdpr__faq-item summary {
  list-style: none;
}

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

/* CTA Section */
.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  background: #17191F; /* Card BG */
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-gdpr__cta-text {
  font-size: 1.1rem;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-large {
  padding: 15px 35px;
  font-size: 1.2rem;
}

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

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

  .page-gdpr__description {
    font-size: 1rem;
  }

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

  .page-gdpr__heading {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

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

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

  .page-gdpr__cta-section {
    padding: 50px 15px;
  }

  .page-gdpr__cta-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  /* All images must be responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All image containers must be responsive */
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-container,
  .page-gdpr__content-area,
  .page-gdpr__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* All buttons must be responsive */
  .page-gdpr__btn-primary,
  .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;
  }

  /* Button containers mobile adaptation */
  .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__hero-section {
    padding: 30px 10px;
    padding-top: 10px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

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

  .page-gdpr__heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-gdpr__text,
  .page-gdpr__list li,
  .page-gdpr__faq-answer p {
    font-size: 0.95rem;
  }

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

  .page-gdpr__faq-toggle {
    font-size: 1.3rem;
  }

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

  .page-gdpr__cta-section {
    padding: 40px 10px;
  }

  .page-gdpr__cta-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    margin-bottom: 15px;
  }

  .page-gdpr__cta-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-gdpr__btn-large {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
}

/* Color Contrast Fixes (if needed, applying based on specified palette) */
.page-gdpr__dark-bg {
  color: #FFF3E6; /* Text Main */
  background: #0D0E12; /* Background */
}

.page-gdpr__light-bg {
  color: #FFF3E6; /* Text Main */
  background: #0D0E12; /* Background (as per custom palette, this page is dark-themed) */
}

/* Ensuring text on cards/sections has good contrast */
.page-gdpr__card {
  background: #17191F; /* Card BG */
  color: #FFF3E6;
  border: 1px solid #A84F0C; /* Border */
}

.page-gdpr p,
.page-gdpr li {
  color: #FFF3E6; /* Default text color for body, ensuring contrast */
}