/* style/gdpr.css */

:root {
  --page-gdpr-primary-color: #FF8C1A;
  --page-gdpr-secondary-color: #FFA53A;
  --page-gdpr-bg-color: #0D0E12;
  --page-gdpr-card-bg: #17191F;
  --page-gdpr-text-main: #FFF3E6;
  --page-gdpr-border-color: #A84F0C;
  --page-gdpr-glow-color: #FFB04D;
  --page-gdpr-deep-orange: #D96800;
}

.page-gdpr {
  background-color: var(--page-gdpr-bg-color);
  color: var(--page-gdpr-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: var(--page-gdpr-bg-color);
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for responsive H1 */
  font-weight: 700;
  color: var(--page-gdpr-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  color: var(--page-gdpr-text-main);
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, var(--page-gdpr-secondary-color) 0%, var(--page-gdpr-deep-orange) 100%);
  color: var(--page-gdpr-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--page-gdpr-glow-color);
}

.page-gdpr__section {
  padding: 80px 20px;
  overflow: hidden;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--page-gdpr-primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--page-gdpr-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__highlight {
  color: var(--page-gdpr-primary-color);
  font-weight: 600;
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
}

.page-gdpr__image-centered {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__dark-section {
  background-color: var(--page-gdpr-card-bg);
  color: var(--page-gdpr-text-main);
}

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

.page-gdpr__right-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--page-gdpr-border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__right-title {
  font-size: 1.3rem;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__right-description {
  font-size: 0.95rem;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-gdpr__list-item strong {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__link {
  color: var(--page-gdpr-primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--page-gdpr-glow-color);
}

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

.page-gdpr__contact-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__contact-item strong {
  color: var(--page-gdpr-secondary-color);
}

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

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-card-bg);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-gdpr-text-main);
  background-color: rgba(255, 255, 255, 0.05);
  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: rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--page-gdpr-secondary-color);
  margin-left: 15px;
  line-height: 1;
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--page-gdpr-text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    max-width: 700px;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
  }
}

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

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

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

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

  .page-gdpr__hero-description {
    font-size: 1rem;
  }

  .page-gdpr__btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__right-description {
    font-size: 0.95rem;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__right-item {
    padding: 20px;
  }

  .page-gdpr__right-title {
    font-size: 1.2rem;
  }

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

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

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

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

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

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

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

  .page-gdpr__section {
    padding: 30px 10px;
  }

  .page-gdpr__container {
    padding: 0 10px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .page-gdpr__contact-item {
    font-size: 1rem;
  }
}