.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: #000080; /* Dark Blue */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr h3 {
  font-size: 1.8em;
  color: #000080;
}

.page-gdpr p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-gdpr ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-gdpr ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #555;
}

.page-gdpr a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Hero Section */
.page-gdpr__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000080; /* Dark Blue background */
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 900px; /* Adjust max-width as needed */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  color: #ffffff;
}

.page-gdpr__hero-content h1 {
  color: #FFD700; /* Gold for main title on dark background */
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-gdpr__hero-content p {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold button */
  color: #000080; /* Dark Blue text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
}

.page-gdpr__cta-button:hover {
  background: #000080; /* Dark Blue hover background */
  color: #FFD700; /* Gold hover text */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

/* Content Blocks with Images */
.page-gdpr__content-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__content-block .page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__content-block img {
  flex-shrink: 0;
  width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__image-left {
  order: -1; /* Image on left */
}

.page-gdpr__image-right {
  order: 1; /* Image on right */
}

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

.page-gdpr__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__grid-item h3 {
  color: #000080;
  margin-top: 0;
  font-size: 1.5em;
}

/* FAQ Section */
.page-gdpr__faq {
  background-color: #f0f0f0;
}

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

.page-gdpr__faq .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;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-gdpr__faq .faq-question:hover {
  background: #f5f5f5;
}

.page-gdpr__faq .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #FFD700; /* Gold for active question */
  color: #000080; /* Dark Blue text on gold */
  border-color: #FFD700;
}

.page-gdpr__faq .faq-item.active .faq-question h3 {
  color: #000080; /* Dark Blue text on gold */
}

.page-gdpr__faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #000080; /* Dark Blue */
  transition: transform 0.3s ease, color 0.3s ease;
}

.page-gdpr__faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #000080; /* Dark Blue */
}

.page-gdpr__faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-gdpr__faq .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  border-color: #e0e0e0;
}

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

/* CTA Bottom Section */
.page-gdpr__cta-bottom {
  background-color: #000080; /* Dark Blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__cta-bottom h2 {
  color: #FFD700; /* Gold */
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-gdpr__cta-bottom p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr__cta-bottom .page-gdpr__cta-button {
  background: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-gdpr__cta-bottom .page-gdpr__cta-button:hover {
  background: #000080;
  color: #FFD700;
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr h1 {
    font-size: 2.8em;
  }
  .page-gdpr h2 {
    font-size: 2em;
  }
  .page-gdpr h3 {
    font-size: 1.6em;
  }
  .page-gdpr p, .page-gdpr ul li {
    font-size: 1em;
  }
  .page-gdpr__hero-content h1 {
    font-size: 3em;
  }
  .page-gdpr__hero-content p {
    font-size: 1.1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-gdpr__content-block {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .page-gdpr__content-block img {
    width: 80%;
    order: 0 !important; /* Reset order for mobile */
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr h1 {
    font-size: 2.2em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr__hero-content h1 {
    font-size: 2.5em;
  }
  .page-gdpr__hero-content p {
    font-size: 1em;
  }
  .page-gdpr__hero-image {
    border-radius: 8px;
  }
  .page-gdpr__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-gdpr__content-block img {
    width: 90%;
  }
  .page-gdpr__faq .faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq .faq-answer {
    padding: 20px;
  }
  .page-gdpr__cta-bottom h2 {
    font-size: 2.2em;
  }
  .page-gdpr__cta-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.5em;
  }
  .page-gdpr__hero-content h1 {
    font-size: 2em;
  }
  .page-gdpr__hero-content p {
    font-size: 0.9em;
  }
  .page-gdpr__cta-button {
    font-size: 0.9em;
    padding: 8px 20px;
  }
  .page-gdpr__faq .faq-toggle {
    font-size: 20px;
  }
  .page-gdpr__cta-bottom h2 {
    font-size: 1.8em;
  }
}