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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px 60px;
  text-align: center;
  background-color: #E53935; /* Primary brand color for hero background for contrast */
  color: #ffffff;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
  color: #ffffff;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #F5F7FA; /* Background */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E53935; /* Primary brand color */
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #333333; /* Text Main */
}

.page-gdpr__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333; /* Text Main */
}

.page-gdpr__principles-grid, .page-gdpr__rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  border: 1px solid #E0E0E0; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__principle-image, .page-gdpr__right-image, .page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__principle-title, .page-gdpr__right-title {
  font-size: 1.5em;
  color: #E53935; /* Primary brand color */
  margin-bottom: 15px;
}

.page-gdpr__principle-text, .page-gdpr__right-text {
  font-size: 0.95em;
  color: #333333; /* Text Main */
  line-height: 1.6;
}

.page-gdpr__faq-section {
  background-color: #F5F7FA; /* Background */
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  border: 1px solid #E0E0E0; /* Border */
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  color: #333333; /* Text Main */
  background-color: #ffffff; /* Card BG */
  border-bottom: 1px solid #E0E0E0; /* Border */
  list-style: none;
  outline: none;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #E53935;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 20px;
  background-color: #f9f9f9;
  color: #333333; /* Text Main */
  font-size: 1em;
  line-height: 1.6;
}

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

.page-gdpr__final-cta-section {
  text-align: center;
  background-color: #E53935; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px;
}

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

.page-gdpr__final-cta-section .page-gdpr__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-gdpr__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    padding: 12px 20px !important;
  }

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

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

  .page-gdpr__section-description {
    font-size: 1em;
  }

  .page-gdpr__principles-grid, .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__principle-title, .page-gdpr__right-title {
    font-size: 1.3em;
  }

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

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

  .page-gdpr__final-cta-section {
    padding: 60px 15px;
  }

  .page-gdpr__cta-button--large {
    font-size: 1em;
    padding: 15px 25px;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__principles-grid,
  .page-gdpr__rights-list,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__faq-list,
  .page-gdpr__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section,
  .page-gdpr__hero-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Ensure buttons don't overflow */
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

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

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