.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-section {
  background: linear-gradient(135deg, #B22222 0%, #FFD700 100%);
  color: #FFFFFF;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-gdpr__hero-image {
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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: 2.2em;
  color: #B22222;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

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

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

.page-gdpr__text-content {
  flex: 1;
  font-size: 1.05em;
  color: #444;
}

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

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

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

.page-gdpr__image--center {
  display: block;
  margin: 40px auto;
  max-width: 700px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
}

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #B22222;
  font-size: 1.05em;
  color: #333;
}

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

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

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

.page-gdpr__list--numbered li::before {
  counter-increment: gdpr-item;
  content: counter(gdpr-item) ".";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #B22222;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-gdpr__list--icons li {
    border-left: none;
    position: relative;
    padding-left: 60px;
    display: flex;
    align-items: center;
}

.page-gdpr__list--icons li .page-gdpr__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B22222;
    font-size: 1.5em;
}

.page-gdpr__icon--encryption::before { content: '🔒'; }
.page-gdpr__icon--firewall::before { content: '🛡️'; }
.page-gdpr__icon--access::before { content: '🔑'; }
.page-gdpr__icon--audit::before { content: '🔍'; }

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

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

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-gdpr__btn--secondary:hover {
  background-color: #B22222;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(178, 34, 34, 0.4);
}

.page-gdpr__cta-section {
    background-color: #B22222;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-gdpr__cta-section .page-gdpr__section-title {
    color: #FFD700;
}

.page-gdpr__cta-section .page-gdpr__section-title::after {
    background-color: #FFFFFF;
}

.page-gdpr__cta-section .page-gdpr__description {
    color: #F0F0F0;
    margin-bottom: 40px;
}

.page-gdpr__keyword {
  color: #B22222;
  font-weight: bold;
}

.page-gdpr a {
  color: #B22222;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-subtitle, .page-gdpr__description, .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__content-grid:nth-child(even) {
    flex-direction: column;
  }
  .page-gdpr__image-wrapper {
    order: -1; /* Image first on mobile for some sections */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 0 30px;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__list li {
    padding: 15px 20px;
    margin-bottom: 10px;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  .page-gdpr__list--numbered li, .page-gdpr__list--icons li {
    padding-left: 45px;
  }
  .page-gdpr__list--numbered li::before, .page-gdpr__list--icons li .page-gdpr__icon {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.3em;
  }
  .page-gdpr__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}