/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0F1A3A; /* A darker shade of main color for background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2B5B 0%, #0F1A3A 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 3px solid #FFD700;
}

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

.page-gdpr__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #C0C0C0;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

.page-gdpr__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-gdpr__list li {
  background-color: #1A2B5B;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #FFFFFF;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__list li:hover {
  transform: translateY(-5px);
  background-color: #2F4070; /* Slightly lighter on hover */
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #1A2B5B; /* Dark text on accent background */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button:hover {
  background-color: #E0B500; /* Slightly darker on hover */
  transform: translateY(-3px);
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__content-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

.page-gdpr__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  margin-top: 40px;
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-item {
  background-color: #1A2B5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-8px);
  background-color: #2F4070;
}

.page-gdpr__grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  color: #C0C0C0;
  font-size: 1em;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right, .page-gdpr__image--center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 500px;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr p, .page-gdpr__list li, .page-gdpr__grid-item p {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}