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

.page-gdpr__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__hero-section {
  background-color: #007bff; /* Main color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-image {
  max-width: 100%;
  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 #e9ecef;
}

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

.page-gdpr__section--alt-bg {
  background-color: #e2f0ff; /* Lighter shade of main color */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0056b3; /* Darker shade of main color for better contrast */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #495057;
}

.page-gdpr__highlight {
  color: #0056b3; /* Darker blue for emphasis */
  font-weight: bold;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #495057;
}

.page-gdpr__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  flex-shrink: 0;
  color: #ffc107; /* Auxiliary color for icons */
}

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

.page-gdpr__section--contact {
  text-align: center;
  background-color: #007bff; /* Main color */
  color: #ffffff;
  padding: 60px 0;
}

.page-gdpr__section--contact .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__section--contact p {
  color: #e0e0e0;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-gdpr__contact-link {
  color: #ffc107; /* Auxiliary color for links */
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__btn--primary {
  background-color: #ffc107; /* Auxiliary color for button */
  color: #0056b3; /* Darker blue for text contrast */
  border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003f8e;
}

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

  .page-gdpr__hero-description,
  .page-gdpr p,
  .page-gdpr__list li {
    font-size: 1em;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }

  .page-gdpr__hero-description {
    font-size: 0.9em;
  }

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}