/* style/gdpr.css */

/* Variables for colors */
:root {
  --j9bet-primary-color: #0D47A1;
  --j9bet-secondary-color: #FFD600;
  --j9bet-text-dark: #212121; /* Darker text for readability */
  --j9bet-text-light: #FFFFFF; /* Light text for dark backgrounds */
  --j9bet-background-light: #F8F8F8;
}

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

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero {
  background: var(--j9bet-primary-color);
  color: var(--j9bet-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--j9bet-secondary-color);
  font-weight: bold;
}

.page-gdpr__hero-subtitle {
  font-size: 1.2em;
  opacity: 0.9;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: var(--j9bet-primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--j9bet-secondary-color);
  border-radius: 2px;
}

.page-gdpr__introduction p, .page-gdpr__data-usage p, .page-gdpr__security p, .page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

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

.page-gdpr__list li {
  background-color: #f0f4f8;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--j9bet-secondary-color);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: var(--j9bet-text-dark);
  font-size: 1.05em;
}

.page-gdpr__list li strong {
  color: var(--j9bet-primary-color);
}

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

.page-gdpr__link {
  color: var(--j9bet-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: var(--j9bet-secondary-color);
}

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

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 30px;
  background-color: var(--j9bet-secondary-color);
  color: var(--j9bet-primary-color);
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #e6c200; /* Slightly darker yellow */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__list li {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 0.9em;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__introduction p, .page-gdpr__data-usage p, .page-gdpr__security p, .page-gdpr__contact p {
    font-size: 1em;
  }

  .page-gdpr__list li {
    font-size: 0.95em;
  }

  .page-gdpr__button {
    width: 90%;
    font-size: 1em;
  }
}