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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title on dark background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
  text-align: center;
}

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

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  color: #000066;
  border-color: #e6c200;
}

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

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

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

.page-gdpr__btn--cta:hover {
  background-color: #000066;
  border-color: #000066;
}

.page-gdpr__btn--contact {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-gdpr__btn--contact:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr__content-section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000080;
  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: #FFD700;
  border-radius: 2px;
}

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

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

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

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

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

.page-gdpr__list li {
  background-color: #fff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
}

.page-gdpr__list li strong {
  color: #000080;
}

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

.page-gdpr__right-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__right-card h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__right-card p {
  color: #555;
}

.page-gdpr__cta-box {
  background-color: #000080;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-box p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-gdpr__cta-box .page-gdpr__btn {
  margin: 0 10px;
}

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

.page-gdpr__security-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-gdpr__security-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-gdpr__security-item h3 {
  color: #000080;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-gdpr__security-item p {
  color: #555;
}

.page-gdpr__contact-info {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__contact-info a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-gdpr__contact p a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact p a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__image-block {
    order: -1; /* Image first on smaller screens */
  }
  .page-gdpr__rights-grid, .page-gdpr__security-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__cta-box .page-gdpr__btn {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__list li, .page-gdpr__right-card h3, .page-gdpr__security-item h3 {
    font-size: 1.05em;
  }
  .page-gdpr__cta-box p {
    font-size: 1.1em;
  }
}