.page-gdpr {
  color: #333333; /* Dark text for default light body background */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gdpr__hero-container {
  position: relative;
  text-align: center;
  color: #ffffff; /* Light text for hero content over dark overlay */
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(0, 51, 102, 0.7); /* Semi-transparent main color overlay */
  border-radius: 12px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--primary {
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color as text */
}

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

.page-gdpr__button--secondary {
  background-color: #003366; /* Main color */
  color: #FFCC00; /* Auxiliary color as text */
  border: 2px solid #FFCC00;
}

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

.page-gdpr__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

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

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

.page-gdpr__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__item-title {
  font-size: 1.6em;
  color: #003366; /* Main color */
  margin-bottom: 15px;
}

.page-gdpr__item-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-gdpr__your-rights-section {
  background-color: #003366; /* Main color as background */
  color: #ffffff;
  padding: 80px 0;
}

.page-gdpr__your-rights-section .page-gdpr__section-title {
  color: #FFCC00; /* Auxiliary color for title */
}

.page-gdpr__your-rights-section .page-gdpr__section-title::after {
  background-color: #ffffff;
}

.page-gdpr__your-rights-section .page-gdpr__section-text {
  color: #e0e0e0;
}

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

.page-gdpr__right-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr__right-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.8em;
  color: #FFCC00; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-gdpr__contact-section {
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-gdpr__section-text {
    font-size: 0.95em;
  }

  .page-gdpr__commitment-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

  .page-gdpr__your-rights-section {
    padding: 60px 0;
  }

  .page-gdpr__contact-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Mobile content area image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__item-title,
  .page-gdpr__card-title {
    font-size: 1.4em;
  }
}