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

.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: #f0f0f0; /* Neutral background for image */
}

.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: #333333; /* Ensure readability over image */
}

.page-gdpr-hero-content h1 {
  font-size: 3.2em;
  color: #DC143C; /* Secondary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-gdpr-hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary color */
  color: #333333; /* Dark text for contrast */
  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: #DC143C; /* Secondary color on hover */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr-secondary-button {
  display: inline-block;
  padding: 12px 30px;
  background: #DC143C; /* Secondary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-gdpr-secondary-button:hover {
  background: #FFD700; /* Primary color on hover */
  color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.page-gdpr-section {
  padding: 80px 0;
  border-bottom: 1px solid #eeeeee;
}

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

.page-gdpr-introduction {
  background-color: #ffffff;
}

.page-gdpr-user-rights {
  background-color: #f8f8f8;
}

.page-gdpr-data-processing {
  background-color: #ffffff;
}

.page-gdpr-security-measures {
  background-color: #f8f8f8;
}

.page-gdpr-contact {
  background-color: #ffffff;
}

.page-gdpr-faq {
  background-color: #f8f8f8;
}

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

.page-gdpr-container h2 {
  font-size: 2.5em;
  color: #DC143C; /* Secondary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr-container h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #FFD700; /* Primary color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr-container h3 {
  font-size: 1.8em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 20px;
}

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

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

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

.page-gdpr-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-gdpr-image-left {
  float: left;
  margin-right: 30px;
}

.page-gdpr-image-right {
  float: right;
  margin-left: 30px;
}

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

.page-gdpr-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr-card h3 {
  font-size: 1.5em;
  color: #DC143C; /* Secondary color */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr-card p {
  font-size: 1em;
  color: #555555;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #DC143C; /* Secondary color when active */
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero-content h1 {
    font-size: 2.8em;
  }
  .page-gdpr-container h2 {
    font-size: 2em;
  }
  .page-gdpr-image-left, .page-gdpr-image-right {
    float: none;
    margin: 30px auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero-content h1 {
    font-size: 2.2em;
  }
  .page-gdpr-hero-content p {
    font-size: 1em;
  }
  .page-gdpr-cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-gdpr-section {
    padding: 60px 0;
  }
  .page-gdpr-container h2 {
    font-size: 1.8em;
  }
  .page-gdpr-container h3 {
    font-size: 1.4em;
  }
  .page-gdpr-container p, .page-gdpr-container ul li {
    font-size: 0.95em;
  }
  .page-gdpr-card-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr-card {
    padding: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero-content h1 {
    font-size: 1.8em;
  }
  .page-gdpr-cta-button {
    width: 90%;
    box-sizing: border-box;
  }
  .page-gdpr-container h2 {
    font-size: 1.6em;
  }
  .page-gdpr-container h3 {
    font-size: 1.2em;
  }
}