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

.page-gdpr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 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: #8B0000; /* Dark Red - Auxiliary color */
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

.page-gdpr h3 {
  font-size: 1.6em;
  color: #8B0000; /* Dark Red */
  margin-top: 25px;
}

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

.page-gdpr-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  background-color: #333;
}

.page-gdpr-hero-container {
  position: relative;
  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-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 800px;
}

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

.page-gdpr-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold - Primary color */
  color: #8B0000; /* Dark Red for text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-gdpr-cta-button:hover {
  background-color: #fff;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-gdpr-card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr-card h3 {
  color: #8B0000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr-list li h3 {
  color: #8B0000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr-image-full {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr-process-step {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #FFD700;
}

.page-gdpr-process-step h3 {
  color: #8B0000;
  margin-top: 0;
  font-size: 1.4em;
}

.page-gdpr-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr-contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr-contact-list li strong {
  color: #8B0000;
}

.page-gdpr-contact-list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr-contact-list li a:hover {
  text-decoration: underline;
}

.page-gdpr-image-contact {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr-image-faq {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Styles */
.page-gdpr-faq-list {
  margin-top: 30px;
}

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

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

.faq-question:hover {
  background-color: #ebebeb;
}

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

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background-color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr h1 {
    font-size: 2.5em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr-hero-image {
    max-height: 400px;
  }
  .page-gdpr-hero-content {
    padding: 15px;
  }
  .page-gdpr-hero p {
    font-size: 1.1em;
  }
  .page-gdpr-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-gdpr-content-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-hero {
    padding: 60px 0;
  }
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr p {
    font-size: 1em;
  }
  .page-gdpr-hero-image {
    max-height: 300px;
  }
  .page-gdpr-cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr-card {
    padding: 20px;
  }
  .page-gdpr-list li {
    padding: 15px;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.4em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr-hero-image {
    max-height: 200px;
  }
  .page-gdpr-hero p {
    font-size: 0.95em;
  }
  .page-gdpr-cta-button {
    font-size: 0.9em;
  }
}