/* style/gdpr.css */

:root {
  --gdpr-primary-color: #11A84E;
  --gdpr-secondary-color: #22C768;
  --gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --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;
}

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

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--gdpr-deep-green);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

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

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

.page-gdpr__hero-description {
  font-size: 1.25rem;
  color: var(--gdpr-text-main);
  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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--gdpr-button-gradient);
  color: var(--gdpr-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--gdpr-divider-color);
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: 2.5rem;
  color: var(--gdpr-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-gdpr__sub-title {
  font-size: 1.8rem;
  color: var(--gdpr-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-gdpr__paragraph {
  font-size: 1.1rem;
  color: var(--gdpr-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list,
.page-gdpr__rights-list,
.page-gdpr__security-list,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  font-size: 1.1rem;
  color: var(--gdpr-text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list li::before {
  content: '✔';
  color: var(--gdpr-secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__rights-item,
.page-gdpr__security-item {
  background-color: rgba(17, 168, 78, 0.1);
  border: 1px solid var(--gdpr-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-title,
.page-gdpr__security-title {
  font-size: 1.5rem;
  color: var(--gdpr-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

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

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

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

.page-gdpr__contact-link {
  color: var(--gdpr-secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gdpr-border-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-gdpr__section-title {
    font-size: 2.2rem;
  }
  .page-gdpr__hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 0 15px !important;
  }
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__hero-content {
    margin-top: 20px;
  }
  .page-gdpr__main-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;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }
  .page-gdpr__paragraph,
  .page-gdpr__list li,
  .page-gdpr__rights-description,
  .page-gdpr__security-description,
  .page-gdpr__contact-item {
    font-size: 1rem;
  }
  .page-gdpr__rights-title,
  .page-gdpr__security-title {
    font-size: 1.3rem;
  }

  /* Force responsive for images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__rights-item,
  .page-gdpr__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__hero-section {
    padding-top: 10px !important;
  }
}