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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  max-width: 150px;
  margin-top: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  opacity: 0.9;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__heading {
  font-size: 2.2em;
  color: #007BFF;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__sub-heading {
  font-size: 1.6em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-gdpr__commitment p, .page-gdpr__rights p, .page-gdpr__processing p, .page-gdpr__security p, .page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

.page-gdpr__list li strong {
  color: #333;
}

.page-gdpr__image {
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  transition: transform 0.3s ease-in-out;
}

.page-gdpr__image:hover {
  transform: translateY(-5px);
}

.page-gdpr__image--left {
  float: left;
  margin-right: 40px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 40px;
}

.page-gdpr__contact-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3; /* Darker blue for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Clear floats for image sections */
.page-gdpr__rights::after,
.page-gdpr__processing::after,
.page-gdpr__security::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__sub-heading {
    font-size: 1.4em;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__image {
    float: none;
    margin: 30px auto;
    display: block;
    max-width: 80%;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  .page-gdpr__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}