/* style/gdpr.css */
.page-gdpr__hero-section {
  background-color: #0A2E59;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFA500;
  font-weight: bold;
}

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

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

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  color: #333333;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A2E59;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFA500;
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-gdpr__grid--reverse {
  direction: rtl;
}

.page-gdpr__grid--reverse .page-gdpr__text-block {
  direction: ltr;
}

.page-gdpr__grid--reverse .page-gdpr__image-block {
  direction: ltr;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
}

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

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

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

.page-gdpr__text-link {
  color: #0A2E59;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__text-link:hover {
  color: #FFA500;
}

.page-gdpr__contact-block {
  text-align: center;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

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

.page-gdpr__button {
  display: inline-block;
  background-color: #FFA500;
  color: #0A2E59;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__grid {
    grid-template-columns: 1fr;
    direction: ltr; /* Reset direction for smaller screens */
  }

  .page-gdpr__grid--reverse .page-gdpr__text-block {
    order: 1;
  }

  .page-gdpr__grid--reverse .page-gdpr__image-block {
    order: 2;
  }

  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

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

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 40px 10px;
  }

  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

  .page-gdpr__contact-block {
    padding: 20px;
  }
}