/* 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-section {
  background-color: #0A6847; /* Main brand color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(135deg, #0A6847 0%, #1A7A57 100%);
}

.page-gdpr-hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Accent color for emphasis */
}

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

.page-gdpr-keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr-content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-gdpr-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.page-gdpr-section-title {
  font-size: 2.5em;
  color: #0A6847; /* Main brand color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Accent color for underline */
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr-list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
}

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

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

.page-gdpr-image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

.page-gdpr-contact-info {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.page-gdpr-call-to-action {
  background-color: #e0f2f1; /* Lighter shade of main color for background */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid #0A6847;
}

.page-gdpr-cta-title {
  font-size: 2em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-gdpr-cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #444;
}

.page-gdpr-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-gdpr-button-primary {
  background-color: #FFD700; /* Accent color */
  color: #0A6847; /* Main brand color for text */
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-gdpr-button-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr-button-secondary {
  background-color: #0A6847; /* Main brand color */
  color: #fff;
  box-shadow: 0 4px 10px rgba(10, 104, 71, 0.3);
}

.page-gdpr-button-secondary:hover {
  background-color: #1A7A57;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10, 104, 71, 0.4);
}

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

  .page-gdpr-hero-subtitle,
  .page-gdpr-paragraph,
  .page-gdpr-list,
  .page-gdpr-contact-info,
  .page-gdpr-cta-text {
    font-size: 1em;
  }

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

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

  .page-gdpr-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr-button {
    width: 80%;
    margin: 0 auto;
  }
}

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

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

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

  .page-gdpr-list {
    margin-left: 20px;
  }

  .page-gdpr-button {
    width: 90%;
    padding: 12px 20px;
  }
}