/* style/gdpr.css */
:root {
  --gdpr-primary-color: #11A84E;
  --gdpr-secondary-color: #22C768;
  --gdpr-card-bg: #11271B;
  --gdpr-background: #08160F;
  --gdpr-text-main: #F2FFF6;
  --gdpr-text-secondary: #A7D9B8;
  --gdpr-border-color: #2E7A4E;
  --gdpr-glow-color: #57E38D;
  --gdpr-gold-color: #F2C14E;
  --gdpr-divider-color: #1E3A2A;
  --gdpr-deep-green: #0A4B2C;
  --gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
  background-color: var(--gdpr-background);
  color: var(--gdpr-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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;
  background-color: var(--gdpr-background);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-gdpr__hero-title {
  color: var(--gdpr-gold-color);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-gdpr__hero-description {
  color: var(--gdpr-text-secondary);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: var(--gdpr-button-gradient);
  color: var(--gdpr-text-main);
  border: 2px solid transparent;
}

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

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

.page-gdpr__btn-secondary:hover {
  background: var(--gdpr-primary-color);
  color: var(--gdpr-text-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__section-title {
  color: var(--gdpr-gold-color);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__highlight {
  color: var(--gdpr-text-main);
  font-weight: bold;
}

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

.page-gdpr__list-item {
  background-color: var(--gdpr-card-bg);
  border: 1px solid var(--gdpr-border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__list-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__list-title {
  color: var(--gdpr-primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__list-description {
  color: var(--gdpr-text-secondary);
  font-size: 1rem;
}

.page-gdpr__data-processing-section .page-gdpr__section-title {
  margin-bottom: 60px;
}

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

.page-gdpr__card {
  background-color: var(--gdpr-card-bg);
  border: 1px solid var(--gdpr-border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__card-title {
  color: var(--gdpr-primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__contact-section {
  text-align: center;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1rem;
}

.page-gdpr__info-text {
  margin-bottom: 10px;
  color: var(--gdpr-text-secondary);
}

.page-gdpr__contact-link {
  color: var(--gdpr-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: var(--gdpr-gold-color);
}

.page-gdpr__contact-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__faq-item {
  background-color: var(--gdpr-card-bg);
  border: 1px solid var(--gdpr-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
  background-color: var(--gdpr-deep-green);
  border-color: var(--gdpr-primary-color);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gdpr-text-main);
  transition: color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-question:hover {
  color: var(--gdpr-primary-color);
}

.page-gdpr__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gdpr-primary-color);
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
  color: var(--gdpr-gold-color);
}

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

.page-gdpr__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__cta-buttons--bottom {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-gdpr__rights-list,
  .page-gdpr__card-grid,
  .page-gdpr__security-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-gdpr__section {
    padding: 60px 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
  .page-gdpr__text-block {
    font-size: 1rem;
  }
  .page-gdpr__list-item,
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-image {
    height: 200px;
  }
  .page-gdpr__contact-image {
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }
  /* Mobile specific image handling */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__container,
  .page-gdpr__card-grid,
  .page-gdpr__rights-list,
  .page-gdpr__security-list,
  .page-gdpr__faq-list,
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
  .page-gdpr__card {
    width: calc(100% - 30px); /* Account for padding in container */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__rights-list,
  .page-gdpr__card-grid,
  .page-gdpr__security-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr__hero-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-gdpr__list-title {
    font-size: 1.3rem;
  }
  .page-gdpr__card-title {
    font-size: 1.2rem;
  }
  .page-gdpr__faq-question {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.5rem;
  }
}