/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a5e 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-gdpr__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
}

.page-gdpr__btn--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-gdpr__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

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

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

.page-gdpr__subtitle {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__intro .page-gdpr__subtitle,
.page-gdpr__contact .page-gdpr__subtitle {
  text-align: left;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
}

.page-gdpr__content-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-gdpr__content-flex > div {
  flex: 1;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #e5dfd3;
}

.page-gdpr__list li strong {
  color: #FFD700;
}

.page-gdpr__cta-box {
  background-color: #2a3447; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-box h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-gdpr__cta-box p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

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

.page-gdpr__card {
  background-color: #2a3447;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a4a5e;
}

.page-gdpr__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-gdpr__card h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-gdpr__card p {
  font-size: 0.95em;
  color: #e5dfd3;
}

.page-gdpr__contact-info a,
.page-gdpr__contact p a {
  color: #FFD700;
  text-decoration: none;
}

.page-gdpr__contact-info a:hover,
.page-gdpr__contact p a:hover {
  text-decoration: underline;
}

.page-gdpr__image-wrapper--full {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1.8em;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
  }
  .page-gdpr__intro .page-gdpr__subtitle {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__subtitle {
    font-size: 1.6em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.4em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}