/* style/gdpr.css */
.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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 {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FF4500;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #e63e00; /* Darker shade of FF4500 */
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #f0f8ff; /* Lightest shade of #1E90FF for contrast */
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #1E90FF;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__content-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-gdpr__numbered-list {
  list-style-type: decimal;
}

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

.page-gdpr__list li strong,
.page-gdpr__numbered-list li strong {
  color: #1E90FF;
}

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

.page-gdpr__section--contact .page-gdpr__button--contact {
  background-color: #1E90FF;
  margin-top: 20px;
}

.page-gdpr__section--contact .page-gdpr__button--contact:hover {
  background-color: #1565b3; /* Darker shade of 1E90FF */
}

.page-gdpr__cta {
  background-color: #333;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__cta-heading {
  font-size: 2.8em;
  color: #FF4500;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-gdpr__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__button--primary {
  background-color: #FF4500;
}

.page-gdpr__button--secondary {
  background-color: #1E90FF;
}

.page-gdpr__button--secondary:hover {
  background-color: #1565b3;
}

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

  .page-gdpr__subtitle {
    font-size: 1.1em;
  }

  .page-gdpr__heading {
    font-size: 2em;
  }

  .page-gdpr__content-block p,
  .page-gdpr__list li,
  .page-gdpr__numbered-list li {
    font-size: 1em;
  }

  .page-gdpr__cta-heading {
    font-size: 2.2em;
  }

  .page-gdpr__cta p {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__button {
    width: 80%;
    max-width: 300px;
  }
}

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

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

  .page-gdpr__heading {
    font-size: 1.8em;
  }

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

  .page-gdpr__cta-heading {
    font-size: 1.8em;
  }
}