/* style/gdpr.css */
:root {
  --page-gdpr-text-main: #F3F8FF;
  --page-gdpr-text-secondary: #AFC4E8;
  --page-gdpr-card-bg: #10233F;
  --page-gdpr-border-color: #244D84;
  --page-gdpr-glow-color: #4FA8FF;
  --page-gdpr-gold-color: #F2C14E;
  --page-gdpr-divider-color: #1B3357;
  --page-gdpr-deep-navy: #08162B;
  --page-gdpr-primary-color: #113B7A;
  --page-gdpr-accent-color: #1D5FD1;
  --page-gdpr-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
}

.page-gdpr {
  color: var(--page-gdpr-text-main); /* Body background is --deep-navy (dark), so use light text */
  background-color: var(--page-gdpr-deep-navy); /* Ensure consistency if shared.css default is overridden */
  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;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--page-gdpr-primary-color);
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 59, 122, 0.7); /* Semi-transparent background for text on image */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: -80px; /* Overlap slightly with image for visual appeal */
}

.page-gdpr__main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--page-gdpr-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: var(--page-gdpr-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--page-gdpr-gold-color);
  border: 2px solid var(--page-gdpr-gold-color);
  margin-left: 15px;
}

.page-gdpr__btn-secondary:hover {
  background: var(--page-gdpr-gold-color);
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--page-gdpr-deep-navy); /* Ensure dark background for text-main */
  color: var(--page-gdpr-text-main);
}

.page-gdpr__dark-section {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-main);
  padding: 60px 20px;
}

.page-gdpr__section-title {
  font-size: 2rem;
  color: var(--page-gdpr-gold-color);
  margin-bottom: 30px;
  font-weight: 600;
}

.page-gdpr p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-secondary);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr a {
  color: var(--page-gdpr-glow-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: var(--page-gdpr-gold-color);
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 900px;
  text-align: left;
}

.page-gdpr__list-item {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--page-gdpr-text-main);
  padding-left: 30px;
  position: relative;
}

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

.page-gdpr__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-gdpr-gold-color);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.page-gdpr__numbered-list .page-gdpr__list-item::before {
  content: counter(list-item);
  counter-increment: list-item;
  color: var(--page-gdpr-gold-color);
  font-weight: bold;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
  width: 25px;
  text-align: center;
}

.page-gdpr__list--icon .page-gdpr__list-item {
  display: flex;
  align-items: flex-start;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-gdpr__list--icon .page-gdpr__list-item::before {
  content: none;
}

.page-gdpr__icon {
  width: 64px;
  height: 64px;
  min-width: 64px; /* Ensure icon doesn't shrink */
  margin-right: 20px;
  object-fit: contain;
}

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

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.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-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-gdpr-text-main);
  background-color: var(--page-gdpr-primary-color);
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: var(--page-gdpr-accent-color);
}

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

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

.page-gdpr__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--page-gdpr-text-secondary);
  border-top: 1px solid var(--page-gdpr-divider-color);
}

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

.page-gdpr__cta-section {
  background-color: var(--page-gdpr-primary-color);
  padding: 80px 20px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: var(--page-gdpr-gold-color);
  margin-bottom: 20px;
}

.page-gdpr__cta-section p {
  color: var(--page-gdpr-text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -60px;
  }
  .page-gdpr__main-title {
    font-size: 2rem;
  }
  .page-gdpr__description {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__content-area,
  .page-gdpr__dark-section,
  .page-gdpr__container,
  .page-gdpr__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-gdpr__hero-content {
    margin-top: -40px; /* Adjust overlap for mobile */
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .page-gdpr__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    margin-left: 0 !important; /* Remove margin between buttons */
    margin-bottom: 15px; /* Add vertical spacing */
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 0; /* Gap handled by margin-bottom on buttons */
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .page-gdpr p,
  .page-gdpr__list-item,
  .page-gdpr__faq-item summary,
  .page-gdpr__faq-answer {
    font-size: 0.95rem;
  }
  .page-gdpr__list-item {
    padding-left: 25px;
  }
  .page-gdpr__list-item::before {
    font-size: 1rem;
  }
  .page-gdpr__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-right: 15px;
  }
  .page-gdpr__faq-item summary {
    padding: 15px 20px;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.5rem;
  }
  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }
  .page-gdpr__image {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.5rem;
  }
  .page-gdpr__section-title {
    font-size: 1.3rem;
  }
  .page-gdpr__hero-content {
    margin-top: -30px;
  }
}