/* style/gdpr.css */

/* Variables */
:root {
  --page-gdpr-primary-color: #0A2342; /* Dark blue */
  --page-gdpr-secondary-color: #FFD700; /* Gold */
  --page-gdpr-text-light: #FFFFFF;
  --page-gdpr-text-dark: #333333;
  --page-gdpr-bg-light: #F8F8F8;
  --page-gdpr-bg-dark: #0A2342;
  --page-gdpr-accent-color: #f5dcbd; /* Complementary to primary */
  --page-gdpr-card-bg: #FFFFFF;
  --page-gdpr-border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-dark);
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--page-gdpr-bg-dark) 0%, #1A3A60 100%);
  color: var(--page-gdpr-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--page-gdpr-secondary-color);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--page-gdpr-text-light);
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--primary {
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-primary-color);
  font-size: 1.1em;
}

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

.page-gdpr__button--secondary {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-secondary-color);
  border: 1px solid var(--page-gdpr-secondary-color);
  font-size: 1.1em;
}

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

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

.page-gdpr__section--alt-bg {
  background-color: var(--page-gdpr-bg-light);
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 30px;
  text-align: left;
  font-weight: bold;
}

.page-gdpr__heading--center {
  text-align: center;
}

.page-gdpr__flex-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__flex-content--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__text-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__text-content ul li {
  margin-bottom: 8px;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__text-content strong {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

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

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

.page-gdpr__grid--three-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-gdpr__card {
  background-color: var(--page-gdpr-card-bg);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--page-gdpr-secondary-color);
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-gdpr__card--no-hover:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.page-gdpr__card p {
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__cta-box {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-light);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
}

.page-gdpr__cta-box p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: var(--page-gdpr-text-light);
}

.page-gdpr__contact-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f0f4f8;
}

.page-gdpr__text-center {
  text-align: center;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__link {
  color: var(--page-gdpr-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--page-gdpr-secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__flex-content {
    flex-direction: column;
  }
  .page-gdpr__flex-content--reverse {
    flex-direction: column;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__heading {
    font-size: 1.6em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-box {
    padding: 30px;
  }
  .page-gdpr__cta-box p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
}