.page-gdpr {
  padding-top: 10px; /* Small top padding for inner pages */
  color: #F3F8FF;
  background-color: #08162B; /* Deep Navy as main background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0 60px;
  background-color: #113B7A; /* Primary color for hero background */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* 1920x1080 ratio */
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.page-gdpr__hero-content {
  padding: 20px 15px;
  max-width: 900px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for GDPR page, still large */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
}

.page-gdpr__intro-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 30px;
  color: #AFC4E8;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #4FA8FF; /* Glow color for underline */
  margin: 10px auto 0;
}

.page-gdpr__section-description {
  font-size: 1rem;
  color: #AFC4E8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-gdpr__section--principles {
  background-color: #10233F; /* Card BG */
}

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

.page-gdpr__principle-card {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__principle-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensures image doesn't overflow card */
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Min size requirement */
  min-height: 200px;
}

.page-gdpr__principle-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #F3F8FF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__principle-text {
  font-size: 0.95rem;
  color: #AFC4E8;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-gdpr__rights-item {
  background-color: #10233F; /* Card BG */
  border-left: 5px solid #4FA8FF; /* Glow color accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1rem;
  color: #F3F8FF;
  display: flex;
  align-items: center;
}

.page-gdpr__rights-item::before {
  content: '✔';
  color: #F2C14E; /* Gold checkmark */
  margin-right: 10px;
  font-weight: bold;
}

.page-gdpr__cta-button--secondary {
  background: #1D5FD1; /* Auxiliary color */
  margin-top: 20px;
}

.page-gdpr__cta-button--secondary:hover {
  background: #113B7A; /* Primary color on hover */
}

.page-gdpr__section--data-handling {
  background-color: #08162B; /* Deep Navy */
}

.page-gdpr__data-handling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-gdpr__data-handling-item {
  background-color: #10233F; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #1B3357; /* Divider color */
}

.page-gdpr__data-handling-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-gdpr__data-handling-text {
  font-size: 0.9rem;
  color: #AFC4E8;
}

.page-gdpr__data-handling-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__section--contact {
  padding-bottom: 80px;
  background-color: #113B7A; /* Primary color */
}

.page-gdpr__footer-note {
  font-size: 0.85rem;
  color: #AFC4E8;
  text-align: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__hero-section {
    padding: 30px 0 40px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-gdpr__intro-text {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-top: 40px;
  }

  .page-gdpr__section-description {
    margin-bottom: 30px;
  }

  .page-gdpr__principles-grid, .page-gdpr__data-handling-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__principle-card, .page-gdpr__data-handling-item {
    padding: 20px;
  }

  .page-gdpr__rights-list {
    margin: 30px auto;
  }

  .page-gdpr__rights-item {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .page-gdpr__cta-button {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-section {
    padding: 20px 0 30px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-gdpr__intro-text {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    margin-top: 30px;
  }

  .page-gdpr__section-description {
    margin-bottom: 20px;
  }

  .page-gdpr__principles-grid, .page-gdpr__data-handling-grid {
    gap: 15px;
  }

  .page-gdpr__principle-card, .page-gdpr__data-handling-item {
    padding: 15px;
  }

  .page-gdpr__rights-item {
    font-size: 0.9rem;
  }

  .page-gdpr__cta-button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .page-gdpr__hero-content {
    padding: 15px 10px;
  }
}