/* 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: #0D1B2A; /* Main background color */
}

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

/* Hero Section */
.page-gdpr__hero {
  background: linear-gradient(135deg, #0D1B2A, #2C3E50);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light gray */
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section--alt-bg {
  background-color: #1A2B3D; /* Slightly lighter dark background */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray */
  text-align: justify;
}

.page-gdpr__highlight {
  color: #FFD700; /* Gold highlight for keywords */
  font-weight: bold;
}

.page-gdpr__list {
  list-style: disc inside;
  font-size: 1.1em;
  color: #E0E0E0;
  margin-left: 20px;
  margin-bottom: 30px;
}

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

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

/* Buttons */
.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold */
  color: #0D1B2A; /* Dark text on gold */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #0D1B2A;
}

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

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0D1B2A;
}

/* Call to Action Section */
.page-gdpr__section--cta {
  background-color: #0D1B2A;
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta-content {
  border: 2px solid #FFD700;
  padding: 40px;
  border-radius: 10px;
  background-color: #1A2B3D;
}

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

  .page-gdpr__hero-subtitle,
  .page-gdpr__section-title,
  .page-gdpr__text,
  .page-gdpr__list {
    font-size: 1em;
  }

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

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

  .page-gdpr__hero-subtitle {
    font-size: 0.9em;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__text,
  .page-gdpr__list {
    font-size: 0.9em;
  }

  .page-gdpr__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}