.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for assumed light body background */
  line-height: 1.6;
  background-color: var(--background-color, #f9f9f9); /* Use shared background, default to light gray */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f0f8ff; /* Light blue background for hero */
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr__hero-title {
  font-size: 48px;
  color: #26A9E0; /* Primary brand color */
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-gdpr__hero-description {
  font-size: 20px;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: #1e87c0; /* Slightly darker primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__introduction {
  background-color: #ffffff;
}

.page-gdpr__what-is-gdpr {
  background-color: #f0f8ff; /* Light blue */
}

.page-gdpr__your-rights {
  background-color: #ffffff;
}

.page-gdpr__implementation {
  background-color: #f0f8ff; /* Light blue */
}

.page-gdpr__contact {
  background-color: #ffffff;
}

.page-gdpr__faq {
  background-color: #f0f8ff; /* Light blue */
  padding-bottom: 80px;
}

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

.page-gdpr__heading {
  font-size: 36px;
  color: #26A9E0; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  color: #444444;
}

.page-gdpr__paragraph a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__paragraph a:hover {
  text-decoration: underline;
}

.page-gdpr__highlight {
  font-weight: bold;
  color: #26A9E0;
}

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

.page-gdpr__image-text-block .page-gdpr__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-text-block .page-gdpr__text-content {
  flex: 2;
}

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

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

.page-gdpr__card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

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

.page-gdpr__card-title {
  font-size: 22px;
  color: #26A9E0; /* Primary brand color */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 16px;
  color: #555555;
}

.page-gdpr__image-wrapper--center {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__list-item {
  background: #ffffff;
  padding: 20px;
  border-left: 5px solid #26A9E0;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #444444;
}

.page-gdpr__list-item strong {
  color: #26A9E0;
  font-weight: 600;
}

.page-gdpr__list-item a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__list-item a:hover {
  text-decoration: underline;
}

.page-gdpr__contact-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__contact-text {
  flex: 1;
}

.page-gdpr__contact-image {
  flex: 1;
  text-align: center;
}

.page-gdpr__contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
  background: #ffffff;
  color: #26A9E0; /* Primary brand color */
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background: #f0f8ff; /* Light blue */
  color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #ffffff; /* White background for answer */
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
}