/* style/gdpr.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: #002244;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--dark-bg-1); /* Assuming shared.css defines --dark-bg-1 as a dark color */
}

.page-gdpr__hero-section {
  position: relative;
  padding: 120px 20px 60px; /* Adjust padding-top for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background-color: var(--primary-color);
  background-image: url('[GALLERY:gdpr:u888,gdpr,compliance,hero-banner,1920x1080]');
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 2000px rgba(0, 51, 102, 0.7);
}

.page-gdpr__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.page-gdpr__hero-section > * {
  position: relative;
  z-index: 1;
}

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

.page-gdpr__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-gdpr__description a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__description a:hover {
  color: #fff;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-gdpr__btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-gdpr__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
  padding: 80px 0;
}

.page-gdpr__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-gdpr__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: inherit; /* Inherit color from section */
}

.page-gdpr__dark-bg .page-gdpr__section-title {
  color: var(--secondary-color);
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__content-area p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-gdpr__content-area p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-gdpr__content-area p a:hover {
  color: #fff;
}

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

.page-gdpr__list-item {
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 1.5em;
  font-weight: bold;
}

.page-gdpr__list-item h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
  color: inherit;
}

.page-gdpr__dark-bg .page-gdpr__list-item h3 {
  color: var(--secondary-color);
}

.page-gdpr__list-item p {
  margin-bottom: 0;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-gdpr__card p {
  font-size: 1em;
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__contact-item {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__contact-item a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-gdpr__contact-item a:hover {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 100px 15px 40px; /* Mobile padding-top for fixed header */
  }

  .page-gdpr__main-title {
    font-size: 2.2em;
  }

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-gdpr__cta-button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 50px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__content-area {
    padding: 0 15px;
  }

  .page-gdpr__content-area p {
    font-size: 0.95em;
  }

  .page-gdpr__list-item {
    padding-left: 25px;
    margin-bottom: 25px;
  }

  .page-gdpr__list-item h3 {
    font-size: 1.3em;
  }

  .page-gdpr__grid-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
    box-sizing: border-box !important;
  }

  .page-gdpr__contact-item {
    font-size: 1em;
    padding: 0 15px;
  }
}

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

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

  .page-gdpr__cta-buttons {
    gap: 10px;
  }

  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}