.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, #26A9E0 0%, #1A7BBF 100%); /* Primary brand color gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px; /* Adjust max-width for image to fit below content */
  order: 1; /* Image appears first in DOM */
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  order: 2; /* Content appears second in DOM */
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-gdpr__description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

.page-gdpr__content-section {
  padding: 80px 20px;
  background: #ffffff;
  color: #333333;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #26A9E0; /* Primary brand color */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-gdpr__content-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__content-section strong {
  font-weight: 700;
  color: #26A9E0;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-gdpr__image-wrapper {
  margin: 40px auto;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__contact-info {
  margin-top: 40px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.page-gdpr__contact-info p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__contact-info .page-gdpr__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.page-gdpr__contact-info .page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333333;
}

.page-gdpr__contact-info .page-gdpr__list li a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-gdpr__contact-info .page-gdpr__list li a:hover {
  text-decoration: underline;
}

.page-gdpr__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-primary:hover {
  background: #1A7BBF;
  transform: translateY(-2px);
}

.page-gdpr__faq-section {
  padding: 80px 20px;
  background: #f0f5f9; /* Light blueish background */
  color: #333333;
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #d0e0ea;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: #f5fafd;
}

.page-gdpr__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #26A9E0;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 20px;
  background: #fefefe;
  border-top: 1px solid #f0f0f0;
  border-radius: 0 0 10px 10px;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }
  
  .page-gdpr__hero-image img {
    border-radius: 8px;
  }

  .page-gdpr__main-title {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-gdpr__content-section {
    padding: 50px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .page-gdpr__sub-title {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__content-section p,
  .page-gdpr__list li {
    font-size: 0.95rem;
  }

  .page-gdpr__image-wrapper {
    margin: 30px auto;
    border-radius: 8px;
  }

  .page-gdpr__contact-info {
    padding: 20px;
  }

  .page-gdpr__contact-info p {
    font-size: 1rem;
  }

  .page-gdpr__contact-info .page-gdpr__list li {
    font-size: 0.95rem;
  }

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-gdpr__faq-section {
    padding: 50px 15px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 24px;
    margin-left: 10px;
  }

  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  
  .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;
  }
}

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

  .page-gdpr__section-title {
    font-size: 1.4rem;
  }

  .page-gdpr__sub-title {
    font-size: 1.1rem;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 20px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 12px;
  }
}