/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text on dark background */
  background-color: #0F1D33; /* Slightly lighter dark blue for content background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A2E4E, #0F1D33);
  padding: 80px 0 60px;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E4E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

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

.page-gdpr__text-block {
  background-color: #1A2E4E;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid #5f6d83; /* A lighter shade of main color for subtle underline */
  padding-bottom: 15px;
}

.page-gdpr__sub-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__text-block a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__text-block a:hover {
  text-decoration: underline;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

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

.page-gdpr__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  max-width: 400px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  max-width: 400px;
}

.page-gdpr__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  max-width: 600px;
}

.page-gdpr__cta-section {
  text-align: center;
  background-color: #0F1D33;
  padding: 60px 40px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-gdpr__cta-button--primary {
  background-color: #FFD700;
  color: #1A2E4E;
}

.page-gdpr__cta-button--primary:hover {
  background-color: #E5C100;
}

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

.page-gdpr__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E4E;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.3em;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin: 25px auto;
    width: 80%;
    max-width: none;
  }
  .page-gdpr__image--center {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__text-block {
    padding: 30px;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__sub-title {
    font-size: 1.2em;
  }
  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__text-block {
    padding: 20px;
  }
  .page-gdpr__list, .page-gdpr__contact-list {
    margin-left: 15px;
  }
  .page-gdpr__image--center {
    width: 90%;
  }
}