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

.page-gdpr__hero {
  background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%); /* Gold to Deep Sky Blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: page-gdpr__bubble 10s infinite ease-in-out;
}

.page-gdpr__hero::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: page-gdpr__bubble 12s infinite reverse ease-in-out;
}

@keyframes page-gdpr__bubble {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.6; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFFFFF; /* White for contrast on gradient */
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.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.5em;
  color: #00BFFF; /* Deep Sky Blue for headings */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__highlight {
  color: #00BFFF; /* Deep Sky Blue for emphasis */
  font-weight: bold;
}

.page-gdpr__commitment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.page-gdpr__commitment-content p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  min-width: 250px;
  max-width: 400px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  min-width: 250px;
  max-width: 400px;
}

.page-gdpr__image--full-width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

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

.page-gdpr__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__grid-item h3 {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-gdpr__grid-item p {
  font-size: 1em;
  color: #555;
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  color: #00BFFF; /* Deep Sky Blue for icons */
}

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

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

.page-gdpr__list strong {
  color: #00BFFF;
}

.page-gdpr__contact .page-gdpr__address {
  text-align: center;
  margin-top: 30px;
  font-style: normal;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__contact .page-gdpr__address a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
  text-align: center;
}

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

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: #00BFFF; /* Deep Sky Blue */
  color: #fff;
  border: 2px solid #00BFFF;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 250px;
}

.page-gdpr__btn--secondary:hover {
  background-color: #0099cc;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

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

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__hero {
    padding: 80px 0;
  }

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