/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A246A 0%, #304E8A 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-gdpr__section--alt-bg {
  background-color: #f8f8f8;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-gdpr__content-grid--reverse {
  flex-direction: row-reverse;
}

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

.page-gdpr__text-block h3 {
  font-size: 1.8em;
  color: #0A246A;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #444;
}

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

.page-gdpr__image-wrapper--center {
    flex: none;
    margin-top: 30px;
}

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

.page-gdpr__image--small {
    max-width: 400px;
}

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

.page-gdpr__card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #F39C12;
  margin-bottom: 15px;
}

.page-gdpr__card p {
  color: #666;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
}

.page-gdpr__contact-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #444;
}

.page-gdpr__contact-list a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-list a:hover {
  text-decoration: underline;
  color: #F39C12;
}

.page-gdpr__btn-group {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__btn--primary {
  background-color: #F39C12;
  color: #0A246A;
  border: 2px solid #F39C12;
}

.page-gdpr__btn--primary:hover {
  background-color: #e08e0b;
  border-color: #e08e0b;
  color: #fff;
}

.page-gdpr__btn--secondary {
  background-color: #0A246A;
  color: #fff;
  border: 2px solid #0A246A;
}

.page-gdpr__btn--secondary:hover {
  background-color: #071a4f;
  border-color: #071a4f;
}

.page-gdpr__btn--outline {
  background-color: transparent;
  color: #0A246A;
  border: 2px solid #0A246A;
}

.page-gdpr__btn--outline:hover {
  background-color: #0A246A;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__btn {
    margin: 5px;
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-gdpr__btn-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__btn-group {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__btn {
    width: 90%;
    margin-bottom: 10px;
  }
}