.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
  background-color: #F4F7FB; /* Background */
}

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

.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 as body handles header offset */
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  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;
  z-index: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 15px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-gdpr__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #ffffff;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  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 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
  background: #f0f0f0;
  color: #2F6BFF;
  border-color: #2F6BFF;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__intro-section p {
  font-size: 1.05em;
  max-width: 900px;
  margin: 0 auto 1em;
  text-align: center;
  color: #1F2D3D;
}

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

.page-gdpr__card {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
  color: #1F2D3D;
}

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

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-gdpr__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-gdpr__content-grid .page-gdpr__text-block h3 {
  color: #2F6BFF;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-gdpr__content-grid .page-gdpr__text-block ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-gdpr__content-grid .page-gdpr__text-block ul li {
  margin-bottom: 8px;
}

.page-gdpr__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__security-image {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  text-align: center;
  color: #ffffff;
}

.page-gdpr__contact-link {
  color: #A5C4FF;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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;
  color: #1F2D3D;
}

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: #f0f5ff;
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #2F6BFF;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

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

.page-gdpr__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-gdpr__policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-gdpr__link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: #ffffff; /* Card BG */
  color: #2F6BFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid #D6E2FF;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__link-button:hover {
  background: #F4F7FB;
  border-color: #2F6BFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__text-link {
  color: #2F6BFF;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__text-link:hover {
  color: #6FA3FF;
}

/* Color contrast classes */
.page-gdpr__dark-bg {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
}

.page-gdpr__light-bg {
  background: #F4F7FB;
  color: #1F2D3D;
}

.page-gdpr__primary-bg {
  background: #2F6BFF;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__content-grid--reverse .page-gdpr__image-block {
    order: -1;
  }
  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-gdpr__main-title {
    font-size: clamp(24px, 7vw, 40px);
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: clamp(20px, 6vw, 30px);
    margin-bottom: 30px;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__content-grid {
    gap: 30px;
  }
  .page-gdpr__security-features {
    gap: 20px;
  }
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-qtext {
    font-size: 1em;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  .page-gdpr__policy-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__link-button {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section, .page-gdpr__card, .page-gdpr__container, .page-gdpr__policy-links, .page-gdpr__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}