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

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

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: #1A2B4C;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFFFFF;
}

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

.page-gdpr h3 {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-gdpr a {
  color: #1A2B4C;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr .hero-gdpr {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A2B4C; /* Fallback for image loading */
}

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

.page-gdpr .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-gdpr .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
}

.page-gdpr .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-gdpr .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A2B4C;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr .introduction-section, 
.page-gdpr .rights-section, 
.page-gdpr .compliance-measures-section, 
.page-gdpr .experience-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr .principles-section {
  padding: 60px 0;
  background-color: #F0F4F8;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr .principles-grid, .page-gdpr .measures-grid, .page-gdpr .rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr .principle-item, .page-gdpr .measure-item, .page-gdpr .right-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr .principle-item:hover, .page-gdpr .measure-item:hover, .page-gdpr .right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-gdpr .principle-icon, .page-gdpr .measure-icon, .page-gdpr .right-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr .principle-item h3, .page-gdpr .measure-item h3, .page-gdpr .right-item h3 {
  color: #1A2B4C;
  font-size: 1.4em;
  margin-top: 0;
}

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

.page-gdpr .rights-section li {
  margin-bottom: 10px;
}

.page-gdpr .experience-section ul {
  list-style-type: none;
  padding: 0;
}

.page-gdpr .experience-section li {
  background-color: #F0F4F8;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
}

.page-gdpr .faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

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

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-gdpr .faq-question:hover {
  background: #f0f0f0;
}

.page-gdpr .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #1A2B4C;
}

.page-gdpr .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-gdpr .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1A2B4C;
}

.page-gdpr .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
}

.page-gdpr .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr h1 {
    font-size: 2.2em;
  }

  .page-gdpr h2 {
    font-size: 1.8em;
  }

  .page-gdpr h3 {
    font-size: 1.3em;
  }

  .page-gdpr .hero-content p {
    font-size: 1em;
  }

  .page-gdpr .principles-grid, .page-gdpr .measures-grid, .page-gdpr .rights-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .page-gdpr .principle-item, .page-gdpr .measure-item, .page-gdpr .right-item {
    padding: 25px;
  }

  .page-gdpr .principle-icon, .page-gdpr .measure-icon, .page-gdpr .right-icon {
    width: 80px;
    height: 80px;
  }

  .page-gdpr .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-gdpr {
    padding: 40px 15px;
  }
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr .principles-grid, .page-gdpr .measures-grid, .page-gdpr .rights-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-gdpr .introduction-section, 
  .page-gdpr .principles-section, 
  .page-gdpr .rights-section, 
  .page-gdpr .compliance-measures-section, 
  .page-gdpr .experience-section, 
  .page-gdpr .faq-section {
    padding: 30px 0;
  }
  .page-gdpr .faq-question {
    padding: 15px 20px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 20px;
  }
  .page-gdpr .faq-answer {
    padding: 0 20px;
  }
  .page-gdpr .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-gdpr .experience-section li {
    padding: 15px;
  }
}