.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-content.page-gdpr {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4; /* Slightly dim image for text readability */
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  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: #FCBC45;
  border-radius: 2px;
}

.page-gdpr__sub-section-heading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-gdpr__text-block a {
  color: #FCBC45;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-block a:hover {
  color: #FFD700;
}

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

.page-gdpr__commitment-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-gdpr__commitment-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__commitment-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__commitment-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__commitment-text {
  font-size: 1em;
  color: #555555;
}

/* Data Collection Section */
.page-gdpr__data-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__data-list-item {
  background-color: #FDFDFD;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

.page-gdpr__list-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__data-list-item p {
  font-size: 1em;
  color: #444444;
}

.page-gdpr__data-list-item strong {
  color: #000000;
}

/* Data Usage Section */
.page-gdpr__usage-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 20px;
}

.page-gdpr__usage-list-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
}

.page-gdpr__usage-list-item strong {
  color: #000000;
}

/* Data Sharing Section */
.page-gdpr__sharing-list, .page-gdpr__transfer-list {
  list-style: circle inside;
  padding-left: 20px;
  margin-top: 15px;
}

.page-gdpr__sharing-list-item, .page-gdpr__transfer-list-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 8px;
}

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

.page-gdpr__right-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #FCBC45;
}

.page-gdpr__right-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-gdpr__right-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__right-text {
  font-size: 1em;
  color: #555555;
}

/* Security Measures Section */
.page-gdpr__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__security-item {
  background-color: #FDFDFD;
  border: 1px solid #EEE;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

.page-gdpr__security-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__security-text {
  font-size: 1em;
  color: #444444;
}

.page-gdpr__security-banner {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Related Policies Section */
.page-gdpr__policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-gdpr__policy-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__policy-button:hover {
  background-color: #333333;
}

/* Contact Section */
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

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

.page-gdpr__contact-list-item strong {
  color: #000000;
}

.page-gdpr__contact-link {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* CTA Section */
.page-gdpr__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  border-radius: 10px;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #FFFFFF;
}

.page-gdpr__cta-section .page-gdpr__section-title::after {
  background-color: #FCBC45;
}

.page-gdpr__cta-section .page-gdpr__text-block {
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-gdpr__content-wrapper {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__sub-section-heading {
    font-size: 1.5em;
  }
  .page-gdpr__text-block, .page-gdpr__data-list-item p, .page-gdpr__usage-list-item, .page-gdpr__sharing-list-item, .page-gdpr__transfer-list-item, .page-gdpr__right-text, .page-gdpr__security-text, .page-gdpr__contact-list-item {
    font-size: 1em;
  }
  .page-gdpr__commitment-grid, .page-gdpr__rights-grid, .page-gdpr__security-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__policy-links {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__policy-button {
    width: 100%;
    max-width: 300px;
  }
  .page-gdpr__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  /* Mobile content area images must be responsive and not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensure images fit within bounds */
  }
  .page-gdpr__commitment-image, .page-gdpr__right-image {
    max-width: 200px;
  }
  .page-gdpr__security-banner {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}