.page-gdpr {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #002244;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-gdpr .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Hero Section */
.page-gdpr .hero-section {
  background: linear-gradient(135deg, var(--primary-color), #004488);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr .hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr .hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-gdpr .hero-section p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr .cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr .cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Content Sections */
.page-gdpr .content-section {
  padding: 80px 0;
}

.page-gdpr .section-intro, .page-gdpr .section-contact {
  background-color: var(--bg-light);
}

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

.page-gdpr .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-gdpr .text-content {
  flex: 1;
  font-size: 17px;
}

.page-gdpr .text-content p {
  margin-bottom: 20px;
}

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

.page-gdpr .text-content ul li {
  margin-bottom: 10px;
}

.page-gdpr .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.15);
}

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

.page-gdpr .principle-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--primary-color);
}

.page-gdpr .principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.12);
}

.page-gdpr .principle-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-gdpr .principle-item p {
  font-size: 16px;
  color: var(--text-dark);
}

/* Rights List */
.page-gdpr .rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr .right-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.08);
  text-align: center;
  border-bottom: 3px solid var(--secondary-color);
}

.page-gdpr .right-item .right-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr .right-item h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-gdpr .right-item p {
  font-size: 15px;
  color: var(--text-dark);
}

/* FAQ Section */
.page-gdpr .section-faq {
  background-color: var(--bg-light);
}

.page-gdpr .faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.page-gdpr .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--primary-color);
}

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

.page-gdpr .faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: inherit;
}

.page-gdpr .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-gdpr .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-gdpr .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.page-gdpr .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
}

.page-gdpr .faq-answer p {
  margin: 0;
  font-size: 16px;
}

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

  .page-gdpr .hero-section p {
    font-size: 18px;
  }

  .page-gdpr .section-title {
    font-size: 30px;
  }

  .page-gdpr .content-wrapper {
    flex-direction: column;
  }

  .page-gdpr .content-wrapper.reverse {
    flex-direction: column;
  }

  .page-gdpr .image-content {
    margin-top: 30px;
  }

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

@media (max-width: 768px) {
  .page-gdpr .hero-section {
    padding: 80px 0 60px;
  }

  .page-gdpr .hero-section h1 {
    font-size: 32px;
  }

  .page-gdpr .hero-section p {
    font-size: 16px;
  }

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

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

  .page-gdpr .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

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

  .page-gdpr .principle-item h3, .page-gdpr .right-item h3 {
    font-size: 20px;
  }

  .page-gdpr .faq-question {
    padding: 12px 15px;
  }

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

  .page-gdpr .faq-toggle {
    font-size: 20px;
  }

  .page-gdpr .faq-answer {
    padding: 0 15px;
  }

  .page-gdpr .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr .hero-section h1 {
    font-size: 28px;
  }

  .page-gdpr .section-title {
    font-size: 24px;
  }

  .page-gdpr .principles-grid, .page-gdpr .rights-list {
    grid-template-columns: 1fr;
  }
}