/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey text for dark background */
  background-color: #1A2A40; /* Main dark blue background */
}

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

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

.page-gdpr-hero-section {
  background: linear-gradient(135deg, #1A2A40 0%, #3a4c6e 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
}

.page-gdpr-main-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-hero-description {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr-text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

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

.page-gdpr-list strong {
  color: #FFD700;
}

.page-gdpr-bg-light {
  background-color: #2A3B50; /* Slightly lighter dark blue for contrast sections */
}

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

.page-gdpr-image-full-width {
  width: 100%;
}

.page-gdpr-image-half-width {
  width: 50%;
  float: right;
  margin-left: 30px;
}

.page-gdpr-image-small {
  width: 200px;
}

.page-gdpr-image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2A40; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-gdpr-btn-primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-gdpr-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2A40;
  transform: translateY(-2px);
}

.page-gdpr-cta-section {
  background-color: #1A2A40;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gdpr-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr-cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

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

  .page-gdpr-hero-section,
  .page-gdpr-section-spacing,
  .page-gdpr-cta-section {
    padding: 50px 0;
  }

  .page-gdpr-image-half-width {
    width: 100%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

  .page-gdpr-hero-description,
  .page-gdpr-text-block,
  .page-gdpr-list li {
    font-size: 1em;
  }

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

  .page-gdpr-cta-title {
    font-size: 2em;
  }
  .page-gdpr-cta-description {
    font-size: 1em;
  }
}