/* style/gdpr.css */
:root {
  --primary-color: #CC0000;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-light: #f0f0f0;
  --border-color: #444444;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark); /* Ensure main content area has a background */
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-gdpr__hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:vivu 88,gdpr,banner,security]') no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: var(--bg-dark); /* Default section background */
  color: var(--text-light);
}

.page-gdpr__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: var(--text-light);
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__content-area p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-light);
}

.page-gdpr__content-area strong {
  color: var(--secondary-color);
}

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

.page-gdpr__list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-light);
}

.page-gdpr__list--numbered {
  counter-reset: gdpr-counter;
}

.page-gdpr__list--numbered li {
  counter-increment: gdpr-counter;
  position: relative;
  padding-left: 50px;
  border-left: none;
}

.page-gdpr__list--numbered li::before {
  content: counter(gdpr-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--text-light);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9em;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.3em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__sub-title {
    font-size: 1.6em;
  }
  .page-gdpr__content-area p,
  .page-gdpr__list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }
  .page-gdpr__hero-section {
    padding: 80px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    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;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr__content-area p,
  .page-gdpr__list li {
    font-size: 0.95em;
  }
  .page-gdpr__list li {
    padding: 12px 15px;
    border-left-width: 3px;
  }
  .page-gdpr__list--numbered li {
    padding-left: 40px;
  }
  .page-gdpr__list--numbered li::before {
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }
  .page-gdpr__image {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
  .page-gdpr__content-area p,
  .page-gdpr__list li {
    font-size: 0.9em;
  }
}