/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #ffc107;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #e9ecef;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}

.page-gdpr__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003e92;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-gdpr__btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

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

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

.page-gdpr__section--alt-bg {
  background-color: #e9ecef;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-gdpr__description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

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

.page-gdpr__text-content {
  flex: 1;
}

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

.page-gdpr__image-wrapper--center {
  text-align: center;
  margin-top: 30px;
}

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

.page-gdpr__image--large {
  max-width: 80%;
}

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

.page-gdpr__right-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-gdpr__right-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__right-item p {
  font-size: 0.95em;
  color: #555;
}

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

.page-gdpr__list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  display: flex;
  align-items: flex-start;
}

.page-gdpr__list-icon {
  color: #28a745;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1.6;
}

.page-gdpr__section--cta {
  background-color: #007bff;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.page-gdpr__container--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.page-gdpr__cta-content {
  flex: 1;
  text-align: left;
  padding-right: 30px;
}

.page-gdpr__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  color: #e9ecef;
}

.page-gdpr__section--cta .page-gdpr__btn--secondary {
  background-color: #ffc107;
  color: #0056b3;
  border-color: #ffc107;
  flex-shrink: 0;
}

.page-gdpr__section--cta .page-gdpr__btn--secondary:hover {
  background-color: #e0a800;
  color: #003e92;
  border-color: #e0a800;
}

.page-gdpr__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr a {
  color: #007bff;
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__image-wrapper {
    margin-top: 30px;
  }
  .page-gdpr__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__cta-content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .page-gdpr__section--cta .page-gdpr__btn--secondary {
    width: auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-description {
    font-size: 0.95em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button-group .page-gdpr__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section {
    padding: 30px 0;
  }
  .page-gdpr__list li {
    font-size: 0.95em;
  }
  .page-gdpr__cta-title {
    font-size: 1.3em;
  }
  .page-gdpr__cta-description {
    font-size: 0.9em;
  }
}