/* style/gdpr.css */
.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  background-color: #003366; /* Main brand color */
  color: #ffffff;
  padding: var(--header-offset, 120px) 20px 60px; /* Use header offset for top padding */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #003366; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  z-index: 0;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__section {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-gdpr__section-text a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__section-text a:hover {
  color: #FFD700;
}

.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: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-gdpr__card-text {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__protection-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__list-item strong {
  color: #003366;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__contact-section {
  text-align: center;
  background-color: #003366;
  color: #ffffff;
  padding: 50px;
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__contact-section .page-gdpr__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
}

.page-gdpr__contact-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: var(--header-offset, 120px) 15px 40px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__section {
    padding: 30px 20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__protection-list {
    margin-left: 20px;
  }
  .page-gdpr__image,
  .page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-gdpr__contact-button,
  .page-gdpr__cta-button--secondary {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px; /* Constrain width for better mobile layout */
  }
  .page-gdpr__contact-section {
    padding: 40px 20px;
  }
  .page-gdpr__cta-button:first-of-type {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-button {
    width: 100%;
    max-width: 280px;
  }
}