/* style/gdpr.css */

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

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

.page-gdpr__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for visual */
  background-color: #F4F7FB;
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-gdpr__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Clamp for responsive H1 */
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #2F6BFF; /* Primary */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #1F2D3D;
}

.page-gdpr__text-link {
  color: #2F6BFF; /* Primary */
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-gdpr__dark-section {
  background-color: #2F6BFF; /* Primary */
  color: #ffffff;
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__description {
  color: #ffffff;
}

.page-gdpr__dark-section .page-gdpr__sub-title {
  color: #A5C4FF; /* Glow */
}

.page-gdpr__dark-bg-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for contrast */
  color: #ffffff;
  border: 1px solid #D6E2FF;
}

.page-gdpr__dark-bg-card .page-gdpr__card-title {
  color: #ffffff;
}

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

.page-gdpr__card {
  background-color: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1F2D3D; /* Text Main */
}

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

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

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

.page-gdpr__rights-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #2F6BFF; /* Primary */
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  color: #1F2D3D;
}

.page-gdpr__rights-item strong {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-gdpr__image-wrapper {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: #FFFFFF; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #1F2D3D;
}

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #000000; /* Custom Color_1776249996415 */
  background-color: #F4F7FB;
  border-bottom: 1px solid #D6E2FF; /* Border */
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF; /* Primary */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  color: #2F6BFF; /* Primary */
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #1F2D3D;
  border-top: 1px solid #e0e0e0; /* Light border for separation */
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
}

.page-gdpr__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-gdpr__conclusion-section {
  text-align: center;
  background-color: #2F6BFF; /* Primary */
  color: #ffffff;
  padding: 80px 0;
}

.page-gdpr__conclusion-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__conclusion-section .page-gdpr__description {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-gdpr__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

  .page-gdpr__section {
    padding: 40px 0;
  }

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

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

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em;
  }

  .page-gdpr__hero-content .page-gdpr__btn-primary {
    padding-left: 0;
    padding-right: 0;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
  }

  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__rights-item {
    padding: 15px;
  }

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

  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure all images are responsive on mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-wrapper,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-section .page-gdpr__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  /* Buttons container in mobile */
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}