/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light gray text on dark background */
  background-color: #0A192F;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%);
  padding: 80px 0 40px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-gdpr__content-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__contact-section,
.page-gdpr__cta-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-gdpr__content-section,
.page-gdpr__security-section {
  background-color: #0A192F;
}

.page-gdpr__rights-section {
  background-color: #1a2a44; /* Slightly lighter dark blue for contrast */
}

.page-gdpr__contact-section {
  background-color: #0A192F;
}

.page-gdpr__cta-section {
  background: linear-gradient(90deg, #0A192F, #1a2a44);
  text-align: center;
  padding: 80px 0;
  border-top: 2px solid #FFD700;
}

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

.page-gdpr__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: normal;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F0F0F0;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 30px;
  color: #F0F0F0;
  font-size: 1.1em;
}

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

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

.page-gdpr__security-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
  color: #F0F0F0;
  font-size: 1.1em;
}

.page-gdpr__security-list li {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.page-gdpr__security-list li:hover {
  transform: translateX(5px);
}

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

.page-gdpr__image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  display: block;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

.page-gdpr__button--cta {
  font-size: 1.2em;
  padding: 18px 35px;
  margin: 0 10px;
}

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

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-gdpr__cta-buttons {
  margin-top: 40px;
}

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

.page-gdpr__link:hover {
  text-decoration: underline;
}

/* Clearfix for floated images */
.page-gdpr__container::after {
  content: "";
  display: table;
  clear: both;
}

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

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

  .page-gdpr__sub-heading {
    font-size: 1.5em;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section,
  .page-gdpr__content-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__contact-section,
  .page-gdpr__cta-section {
    padding: 40px 0;
  }

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

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

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

  .page-gdpr__sub-heading {
    font-size: 1.3em;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list,
  .page-gdpr__security-list {
    font-size: 1em;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__button--cta {
    font-size: 1.1em;
    padding: 15px 30px;
    margin: 10px 0;
    display: block;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}