.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #e0f2f7; /* Light blue background for hero */
  overflow: hidden; /* Prevent image overflow */
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__main-title {
  font-size: 38px;
  color: #007bff; /* Brand primary color */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #007bff; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  border: none;
}

.page-gdpr__cta-button:hover {
  background: #0056b3; /* Darker shade of primary */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__content-section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section--principles {
  background-color: #f9f9f9;
}

.page-gdpr__section-title {
  font-size: 32px;
  color: #007bff; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__text-block {
  font-size: 17px;
  color: #444444;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-gdpr__card img {
  width: 100%;
  height: 200px; /* Fixed height for cards */
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

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

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

.page-gdpr__detail-item {
  background: #f9f9f9;
  border-left: 5px solid #ffc107; /* Secondary brand color */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__detail-title {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__detail-item ul {
  list-style-type: disc;
  padding-left: 25px;
  color: #555555;
}

.page-gdpr__detail-item ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-gdpr__detail-item p {
  font-size: 16px;
  color: #555555;
}

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

.page-gdpr__feature-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__feature-item:hover {
  transform: translateY(-3px);
}

.page-gdpr__feature-item img {
  width: 100%;
   /* Fixed height for feature images */
  max-width: 100%;
  object-fit: contain; /* Use contain for icons/logos if they were allowed, but these are content images */
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__feature-title {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__feature-item p {
  font-size: 16px;
  color: #555555;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #f0f8ff; /* Light blue background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.page-gdpr__contact-info p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__contact-info a {
  color: #007bff; /* Primary brand color for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-gdpr__contact-info a:hover {
  color: #ffc107; /* Secondary brand color on hover */
  text-decoration: underline;
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #007bff; /* Primary brand color */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #ffc107; /* Secondary brand color when active */
  transform: rotate(180deg);
}

.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 25px;
  opacity: 0;
  background: #f0f8ff; /* Light background for answer */
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-gdpr__faq-answer p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 0;
}

.page-gdpr__faq-answer ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 10px;
  color: #555555;
}

.page-gdpr__faq-answer ul li {
  margin-bottom: 5px;
}

.page-gdpr__policy-list {
  list-style-type: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__policy-list li {
  margin-bottom: 15px;
}

.page-gdpr__policy-list a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffc107; /* Secondary brand color */
  color: #333333; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-gdpr__policy-list a:hover {
  background-color: #e0a800; /* Darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__card-title, .page-gdpr__detail-title {
    font-size: 20px;
  }
}

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

  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .page-gdpr__hero-content {
    padding: 20px;
    border-radius: 8px;
  }

  .page-gdpr__main-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .page-gdpr__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-gdpr__text-block {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

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

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card img {
    
    margin-bottom: 15px;
  }

  .page-gdpr__card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .page-gdpr__card p {
    font-size: 15px;
  }

  .page-gdpr__processing-details {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .page-gdpr__detail-item {
    padding: 20px;
  }

  .page-gdpr__detail-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-gdpr__detail-item ul {
    padding-left: 20px;
  }

  .page-gdpr__detail-item ul li {
    font-size: 15px;
  }

  .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

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

  .page-gdpr__feature-item img {
    
    margin-bottom: 15px;
  }

  .page-gdpr__feature-title {
    font-size: 18px;
  }

  .page-gdpr__feature-item p {
    font-size: 15px;
  }

  .page-gdpr__contact-info {
    margin-top: 30px;
    padding: 25px;
  }

  .page-gdpr__contact-info p {
    font-size: 16px;
  }

  .page-gdpr__faq-list {
    margin-top: 30px;
    padding: 0 15px;
  }

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

  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }

  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 26px;
    height: 26px;
  }

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

  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }

  .page-gdpr__faq-answer p {
    font-size: 15px;
  }

  .page-gdpr__policy-list a {
    padding: 10px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  /* Image responsive fix */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section, .page-gdpr__card, .page-gdpr__container, .page-gdpr__processing-details, .page-gdpr__security-features, .page-gdpr__faq-list, .page-gdpr__policy-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}