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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #0A2E5B 0%, #0A2E5B 70%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-gdpr-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-45deg);
}

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

.page-gdpr-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2E5B;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
}

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

.page-gdpr-button-center {
  display: block;
  margin: 30px auto;
  width: fit-content;
}

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr-bg-alt {
  background-color: #eef4fa; /* Lighter shade of main color for contrast */
}

.page-gdpr-heading {
  font-size: 2em;
  color: #0A2E5B;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr-text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
  text-align: justify;
}

.page-gdpr-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-gdpr-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr-list li strong {
  color: #0A2E5B;
}

.page-gdpr-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr-image-left {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  width: 300px;
}

.page-gdpr-image-right {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
  width: 300px;
}

.page-gdpr-text-content::after {
  content: '';
  display: table;
  clear: both;
}

.page-gdpr-link {
  color: #0A2E5B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr-title {
    font-size: 2em;
  }

  .page-gdpr-subtitle {
    font-size: 1em;
  }

  .page-gdpr-heading {
    font-size: 1.6em;
  }

  .page-gdpr-image-left, .page-gdpr-image-right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80%;
  }

  .page-gdpr-text-content p, .page-gdpr-list li {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero {
    padding: 60px 0;
  }

  .page-gdpr-title {
    font-size: 1.8em;
  }

  .page-gdpr-subtitle {
    font-size: 0.9em;
  }

  .page-gdpr-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-gdpr-heading {
    font-size: 1.4em;
  }

  .page-gdpr-section {
    padding: 40px 0;
  }
}