/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* White text for readability */
  background-color: #1a1a1a; /* Dark background to contrast with gold/red */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  height: 100%;
  background: url('[GALLERY:bg:abstract,pattern,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-image {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #2a2a2a; /* Slightly lighter dark background for content */
}

.page-gdpr__article {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-gdpr__heading:first-of-type {
  margin-top: 0;
}

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

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

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

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

.page-gdpr a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%; /* Adjust size for layout */
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%; /* Adjust size for layout */
}

.page-gdpr__article::after {
  content: '';
  display: table;
  clear: both;
}

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

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #8B0000;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button:hover {
  background-color: #FFFFFF;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-gdpr__cta-button--secondary {
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text */
  border: 1px solid #FFD700;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin: 20px auto;
    width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__article {
    padding: 25px;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    display: block;
    margin: 10px auto;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__article {
    padding: 15px;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}