.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000; /* Inherited from shared.css, explicitly set for context */
}

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

/* --- General Section Styling --- */
.page-gdpr__section-title {
  font-size: 2.5em;
  color: #F3C72B; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 20px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-gdpr__paragraph--note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #cccccc;
}

.page-gdpr__paragraph--final {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  font-size: 1.2em;
}

.page-gdpr__highlight {
  color: #F3C72B;
  font-weight: bold;
}

.page-gdpr a {
  color: #F3C72B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #ffda6a;
  text-decoration: underline;
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
  padding: 150px 0 80px; /* Adjusted padding-top for fixed header */
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
  text-align: center;
  background-image: url('[GALLERY:hero:ok365_vip,gdpr_compliance,data_protection,cybersecurity,banner]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #F3C72B;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

/* --- Buttons --- */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #F3C72B;
  color: #0A246A; /* Dark text for light button */
}

.page-gdpr__btn-primary:hover {
  background-color: #ffda6a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #F3C72B;
  border-color: #F3C72B;
}

.page-gdpr__btn-secondary:hover {
  background-color: #F3C72B;
  color: #0A246A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Introduction Section --- */
.page-gdpr__introduction-section {
  padding: 80px 0;
  background-color: #000; /* Dark background for this section */
  color: #f0f0f0;
}

/* --- Principles Section --- */
.page-gdpr__principles-section {
  padding: 80px 0;
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list-title {
  font-size: 1.5em;
  color: #F3C72B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__list-item p {
  color: #f0f0f0;
}

/* --- Rights Section --- */
.page-gdpr__rights-section {
  padding: 80px 0;
  background-color: #000; /* Dark background */
  color: #f0f0f0;
}

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

.page-gdpr__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

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

.page-gdpr__card-image {
  width: 100%;
  max-width: 250px; /* Ensure images are not too wide */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__card p {
  font-size: 1em;
  color: #cccccc;
}

/* --- Commitment Section --- */
.page-gdpr__commitment-section {
  padding: 80px 0;
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
}

.page-gdpr__features-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__features-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__features-title {
  font-size: 1.5em;
  color: #F3C72B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__features-item p {
  color: #f0f0f0;
}

.page-gdpr__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* --- FAQ Section --- */
.page-gdpr__faq-section {
  padding: 80px 0;
  background-color: #000; /* Dark background */
  color: #f0f0f0;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #F3C72B;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #F3C72B;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #cccccc;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 5px 5px;
}

/* --- Contact Section --- */
.page-gdpr__contact-section {
  padding: 80px 0;
  background-color: #0A246A; /* Primary brand color */
  color: #ffffff;
  text-align: center;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__contact-info a {
  color: #F3C72B;
  font-weight: bold;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3em;
  }
  .page-gdpr__hero-description {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__card-title {
    font-size: 1.4em;
  }
  .page-gdpr__list-title,
  .page-gdpr__features-title {
    font-size: 1.3em;
  }
  .page-gdpr__faq-question h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 120px 0 60px; /* Adjusted padding-top for mobile fixed header */
  }
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__paragraph {
    font-size: 0.95em;
  }
  .page-gdpr__list-item,
  .page-gdpr__card,
  .page-gdpr__features-item {
    padding: 20px;
  }
  .page-gdpr__list-title,
  .page-gdpr__features-title {
    font-size: 1.2em;
  }
  .page-gdpr__card-image {
    max-width: 200px;
  }
  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 1em;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-section,
  .page-gdpr__introduction-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__commitment-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__list-title,
  .page-gdpr__features-title {
    font-size: 1.1em;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__paragraph {
    font-size: 0.9em;
  }
}