.page-gdpr {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-medium: #e9e9e9;
}

.page-gdpr .hero-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gdpr .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-gdpr .hero-content p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-gdpr .cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr .cta-button:hover {
  background-color: #C0002A; /* Slightly darker red */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-gdpr h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-gdpr p {
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-gdpr a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.page-gdpr .section-intro .text-content {
  flex: 2;
}

.page-gdpr .section-intro .image-content {
  flex: 1;
  min-width: 300px; /* Ensure image is not too small */
}

.page-gdpr .section-intro .image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

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

.page-gdpr .principle-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-gdpr .principle-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-gdpr .section-rights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr .section-rights .rights-list {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-gdpr .section-rights .rights-list ul {
  flex: 2;
}

.page-gdpr .section-rights .rights-list li {
  background-color: var(--bg-light);
  padding: 20px;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr .section-rights .rights-list li h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 0;
}

.page-gdpr .section-rights .image-content {
  flex: 1;
  min-width: 300px; /* Ensure image is not too small */
}

.page-gdpr .section-rights .image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr .section-implementation {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-gdpr .section-implementation h2 {
  color: var(--secondary-color);
}

.page-gdpr .section-implementation p {
  color: #e0e0e0;
}

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

.page-gdpr .implementation-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.page-gdpr .implementation-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr .implementation-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-gdpr .implementation-item p {
  color: #cccccc;
}

.page-gdpr .cta-banner {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3); /* Dark overlay for text readability */
}

.page-gdpr .cta-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-gdpr .cta-banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  text-align: center;
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.5); /* Stronger overlay */
  border-radius: 10px;
}

.page-gdpr .cta-banner .banner-content h3 {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-gdpr .cta-banner .banner-content p {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.page-gdpr .contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2em;
}

.page-gdpr .contact-info p {
  margin-bottom: 10px;
}

.page-gdpr .contact-info a {
  color: var(--primary-color);
  font-weight: bold;
}

.page-gdpr .contact-info .link-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-gdpr .contact-info .link-button:hover {
  background-color: #071726; /* Darker primary */
}

.page-gdpr .section-faq {
  background-color: var(--text-light);
}

.page-gdpr .faq-container {
  margin-top: 30px;
}

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

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

.page-gdpr .faq-question:hover {
  background: var(--bg-light);
}

.page-gdpr .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--primary-color);
}

.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);
}

.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-color: var(--bg-light);
}

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

.page-gdpr .faq-item.active .faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr .hero-content h1 {
    font-size: 2.8em;
  }
  .page-gdpr h2 {
    font-size: 2em;
  }
  .page-gdpr .section-intro .content-wrapper,
  .page-gdpr .section-rights .rights-list {
    flex-direction: column;
  }
  .page-gdpr .section-intro .image-content,
  .page-gdpr .section-rights .image-content {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }
  .page-gdpr .cta-banner .banner-content h3 {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-section {
    padding: 60px 15px;
  }
  .page-gdpr .hero-content h1 {
    font-size: 2.2em;
  }
  .page-gdpr .hero-content p {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr section {
    padding: 40px 0;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr p {
    font-size: 0.95em;
  }
  .page-gdpr .principles-grid,
  .page-gdpr .implementation-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr .cta-banner .banner-content {
    padding: 30px 20px;
  }
  .page-gdpr .cta-banner .banner-content h3 {
    font-size: 1.5em;
  }
  .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: 15px 20px;
  }
}