.page-gdpr {
  color: #f0f0f0;
  line-height: 1.6;
}

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

.page-gdpr__hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-color), #345e8f);
  color: #ffffff;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-gdpr__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
  margin-top: 20px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-color);
}

.page-gdpr__introduction-section,
.page-gdpr__rights-section,
.page-gdpr__updates-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-gdpr__principles-section,
.page-gdpr__commitment-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #0f172a; /* Body background color */
  color: #ffffff;
}

.page-gdpr__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 30px;
  color: #333333;
}

.page-gdpr__card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card--dark h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-gdpr__card--dark p {
  font-size: 0.95em;
  line-height: 1.5;
  color: #e0e0e0;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-gdpr__image--full-width {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
  width: 40%;
  max-width: 400px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
  width: 40%;
  max-width: 400px;
}

.page-gdpr__icon-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-gdpr__link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--secondary-color);
}

.page-gdpr__rights-section ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__rights-section li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__rights-section li strong {
  color: var(--primary-color);
}

.page-gdpr__commitment-section h3 {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__commitment-section p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-gdpr__contact-section p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-gdpr__contact-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #e6c200;
}

.page-gdpr__updates-section p {
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__updates-section strong {
  color: var(--primary-color);
}

.highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  color: #333333;
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.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 25px;
  opacity: 0;
  background: #f1f3f5;
  color: #444444;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-gdpr__faq-question:active {
  background: #eeeeee;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  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: 32px;
  height: 32px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 100%;
  }
  .page-gdpr__card p,
  .page-gdpr__rights-section li,
  .page-gdpr__commitment-section p,
  .page-gdpr__contact-section p,
  .page-gdpr__updates-section p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-banner {
    padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 60px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__introduction-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__commitment-section,
  .page-gdpr__contact-section,
  .page-gdpr__updates-section,
  .page-gdpr__faq-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__card,
  .page-gdpr__card--dark {
    padding: 25px;
  }
  .page-gdpr__card p,
  .page-gdpr__rights-section li,
  .page-gdpr__commitment-section p,
  .page-gdpr__contact-section p,
  .page-gdpr__updates-section p {
    font-size: 0.95em;
  }
  .page-gdpr__image {
    margin-bottom: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-gdpr__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }
  .page-gdpr__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}