.page-gdpr {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #f5f5f5;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures image covers area, might crop */
  max-height: 400px; /* Limit height for desktop visual balance */
}

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

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 15px;
}

.page-gdpr__intro-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red text for contrast */
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background: #ffffff; /* White background for secondary button */
  color: #C91F17; /* Main brand color for text */
  border: 2px solid #C91F17;
}

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

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

.page-gdpr__dark-section {
  background-color: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

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

.page-gdpr__card {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-gdpr__card--dark {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #FFCC66); /* Glow */
}

.page-gdpr__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-gdpr__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__rights-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__rights-item,
.page-gdpr__security-item {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #F4D34D; /* Gold border */
}

.page-gdpr__rights-title,
.page-gdpr__security-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F4D34D; /* Gold */
}

.page-gdpr__rights-text,
.page-gdpr__security-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-gdpr__feature-card {
  background-color: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__feature-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #C91F17; /* Main brand color */
}

.page-gdpr__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-gdpr__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
}

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

.page-gdpr__faq-item {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: #F4D34D; /* Gold */
  position: relative;
}

.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;
  color: #F4D34D; /* Gold */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #F4D34D; /* Gold */
  transition: transform 0.3s ease;
}

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

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

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

.page-gdpr__faq-answer a {
  color: #F4D34D;
  text-decoration: underline;
}

.page-gdpr__contact-section {
  text-align: center;
  padding: 60px 0;
  background-color: #f5f5f5;
  color: #333333;
}

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

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-gdpr__hero-image {
    object-fit: contain; /* Prevent cropping on mobile */
    max-height: none;
    aspect-ratio: unset;
  }

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

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

  .page-gdpr__cta-button,
  .page-gdpr__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important; /* Adjust padding for smaller screens */
    font-size: 1em !important;
  }

  .page-gdpr__contact-section .page-gdpr__cta-button {
    max-width: 250px !important; /* Limit width for single button */
    margin: 0 auto;
  }

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

  .page-gdpr__paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.3em;
  }

  .page-gdpr__card-icon {
    width: 60px;
    height: 60px;
  }

  .page-gdpr__rights-item,
  .page-gdpr__security-item {
    padding: 20px;
  }

  .page-gdpr__rights-title,
  .page-gdpr__security-title {
    font-size: 1.2em;
  }

  .page-gdpr__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__feature-card {
    padding: 20px;
  }

  .page-gdpr__feature-title {
    font-size: 1.4em;
  }

  .page-gdpr__feature-image {
    height: 200px; /* Adjust height for mobile */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

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

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

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

/* General image and container responsive styles for content sections */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__content-section .page-gdpr__container,
.page-gdpr__faq-section .page-gdpr__container,
.page-gdpr__contact-section .page-gdpr__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__content-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}