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

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

.page-gdpr__hero {
  background-color: #0A246A; /* Royal Blue */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 106, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient with primary and secondary */
  z-index: 1;
}

.page-gdpr__hero > .page-gdpr__container {
  position: relative;
  z-index: 2;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
}

.page-gdpr__intro {
  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: all 0.3s ease;
  font-size: 1em;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Royal Blue */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-gdpr__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.page-gdpr__subtitle {
  font-size: 2em;
  color: #0A246A; /* Royal Blue */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  color: #444;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

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

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

.page-gdpr__content-flex:nth-child(even) {
  flex-direction: row-reverse;
}

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

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

.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-block--center {
  text-align: center;
  flex: none;
  width: 100%;
  margin-top: 30px;
}

.page-gdpr__image-block--center .page-gdpr__image {
  max-width: 70%;
}

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

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

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
  font-size: 1.2em;
  color: #0A246A; /* Royal Blue */
  margin-bottom: 10px;
}

.page-gdpr__contact p {
  text-align: center;
  font-size: 1.1em;
}

.page-gdpr__contact strong {
  color: #0A246A;
}

.page-gdpr__cta-banner {
  background-color: #0A246A; /* Royal Blue */
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 36, 106, 0.95), rgba(255, 215, 0, 0.2)); /* Gradient for CTA */
  z-index: 1;
}

.page-gdpr__cta-content {
  position: relative;
  z-index: 2;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-gdpr__cta-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons .page-gdpr__btn {
  margin: 0 10px;
}

.page-gdpr__btn--secondary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Royal Blue */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-gdpr__btn--outline {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--outline:hover {
  background-color: #FFD700;
  color: #0A246A;
}

.page-gdpr__image-block--cta {
  margin-top: 40px;
}

.page-gdpr__image-block--cta .page-gdpr__image {
  max-width: 60%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__content-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__content-flex:nth-child(even) {
    flex-direction: column;
  }
  .page-gdpr__image-block--center .page-gdpr__image,
  .page-gdpr__image-block--cta .page-gdpr__image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__intro {
    font-size: 1em;
  }
  .page-gdpr__subtitle {
    font-size: 1.7em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-text {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons .page-gdpr__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__intro {
    font-size: 0.9em;
  }
  .page-gdpr__subtitle {
    font-size: 1.5em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__cta-banner {
    padding: 50px 0;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-text {
    font-size: 0.9em;
  }
  .page-gdpr__image-block--center .page-gdpr__image,
  .page-gdpr__image-block--cta .page-gdpr__image {
    max-width: 95%;
  }
}