/* style/gdpr.css */

.page-gdpr {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  padding-bottom: 40px; /* Ensure some space at the bottom */
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile, will change for desktop */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Blue gradient */
  padding-bottom: 40px;
  color: #FFFFFF; /* White text on blue background */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px; /* Slight rounded corners */
}

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF; /* White text */
  /* No fixed font-size, rely on weight/line-height for hierarchy */
}

.page-gdpr__intro-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D6E2FF; /* Lighter blue for description */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
  margin: 15px auto 0;
}

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

.page-gdpr__content-section:nth-of-type(odd) {
  background-color: #FFFFFF; /* Card BG */
}

.page-gdpr__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-gdpr__text-block--centered {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__image-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__image-text-block--reverse {
  flex-direction: column-reverse; /* Image below text on mobile */
}

.page-gdpr__image {
  width: 100%;
  max-width: 600px; /* Constrain image for content areas */
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__image--left {
  /* On desktop, this will be left */
}

.page-gdpr__image--right {
  /* On desktop, this will be right */
}

.page-gdpr__image--centered {
  margin: 30px auto;
  max-width: 800px; /* Larger image for centered ones */
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-gdpr__list-item::before {
  content: '✔'; /* Checkmark for list items */
  color: #2F6BFF;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-top: 20px;
  padding: 0;
}

.page-gdpr__list--inline .page-gdpr__list-item {
  padding-left: 0;
  margin-bottom: 0;
}

.page-gdpr__list--inline .page-gdpr__list-item::before {
  content: none;
}

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

.page-gdpr__contact-link {
  color: #2F6BFF; /* Main color for links */
  text-decoration: none;
  font-weight: 600;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #6FA3FF; /* Auxiliary color on hover */
}

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

.page-gdpr__feature-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-gdpr__feature-title {
  font-size: 1.4em;
  color: #2F6BFF; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-gdpr__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-gdpr__faq-question {
  font-size: 1.2em;
  color: #2F6BFF; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-gdpr__hero-section {
    flex-direction: column; /* Still column for overall structure */
    padding-top: 20px;
  }

  .page-gdpr__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: 2.8em;
  }

  .page-gdpr__intro-description {
    font-size: 1.2em;
  }

  .page-gdpr__section-title {
    font-size: 2.8em;
  }

  .page-gdpr__image-text-block {
    flex-direction: row; /* Row layout for desktop */
    text-align: left;
  }

  .page-gdpr__image-text-block--reverse {
    flex-direction: row-reverse; /* Reverse row layout */
  }

  .page-gdpr__image-text-block .page-gdpr__text-block,
  .page-gdpr__image-text-block .page-gdpr__image {
    flex: 1;
  }

  .page-gdpr__image-text-block .page-gdpr__text-block {
    padding: 0 20px; /* Add some padding between image and text */
  }

  .page-gdpr__list--inline {
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-image,
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .page-gdpr__main-title {
    font-size: 2em; /* Smaller H1 for mobile */
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__features-grid {
    grid-template-columns: 1fr; /* Single column for features on small screens */
  }
}

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

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

  .page-gdpr__list-item {
    font-size: 0.95em;
  }

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

  .page-gdpr__list--inline {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Ensure content area images are never too small on mobile */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  /* Minimum size for content images (excluding shared header/footer icons) */
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
  object-fit: cover; /* Ensure images fill their space */
}

/* Specific rule to prevent content images from being smaller than 200px */
.page-gdpr__image {
  min-width: 200px;
  min-height: 200px;
}
.page-gdpr__hero-image {
  min-width: 200px;
  min-height: 200px;
}