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

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

.page-gdpr .hero-section {
  background: linear-gradient(135deg, var(--primary-color), #2a527c);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-gdpr .hero-content {
  margin-bottom: 30px;
}

.page-gdpr .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Wealth Gold for accent */
  line-height: 1.2;
}

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

.page-gdpr .cta-button {
  display: inline-block;
  background-color: var(--secondary-color); /* Wealth Gold */
  color: #333333;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr .cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-gdpr .hero-image {
  width: 100%;
  max-width: 600px;
}

.page-gdpr .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

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

.page-gdpr .section-title {
  font-size: 2.5em;
  color: var(--primary-color); /* New8 Blue */
  margin-bottom: 30px;
  text-align: center;
  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); /* Wealth Gold */
  border-radius: 2px;
}

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

.page-gdpr .list-icon, .page-gdpr .list-bullet {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr .list-icon li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-gdpr .list-icon li img {
  width: 48px;
  height: 48px;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 5px;
  background-color: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.page-gdpr .list-icon li strong {
  color: var(--primary-color);
}

.page-gdpr .list-bullet li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 1.1em;
  color: #444444;
}

.page-gdpr .list-bullet li::before {
  content: '•';
  color: var(--secondary-color); /* Wealth Gold */
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-gdpr .section-cookies a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr .section-contact .contact-list {
  list-style: none;
  padding: 0;
}

.page-gdpr .section-contact .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-gdpr .section-contact .contact-list li img {
  width: 48px;
  height: 48px;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 5px;
  background-color: var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.page-gdpr .section-contact .contact-list li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-gdpr .faq-toggle {
  font-size: 1.8em;
  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 25px;
  background-color: #ffffff;
  color: #555555;
}

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

.page-gdpr .faq-answer p {
  margin-bottom: 0;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr .hero-title {
    font-size: 2.8em;
  }
  .page-gdpr .hero-description {
    font-size: 1.1em;
  }
  .page-gdpr .section-title {
    font-size: 2em;
  }
  .page-gdpr p, .page-gdpr .list-icon li, .page-gdpr .list-bullet li, .page-gdpr .contact-list li {
    font-size: 1em;
  }
  .page-gdpr .list-icon li img, .page-gdpr .contact-list li img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-section {
    padding: 60px 15px;
  }
  .page-gdpr .hero-title {
    font-size: 2.2em;
  }
  .page-gdpr .hero-description {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr section {
    padding: 40px 0;
  }
  .page-gdpr .section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-gdpr .faq-question {
    padding: 15px 20px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 1.5em;
  }
  .page-gdpr .faq-answer {
    padding: 0 20px;
  }
  .page-gdpr .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr .hero-section {
    padding: 40px 10px;
  }
  .page-gdpr .hero-title {
    font-size: 1.8em;
  }
  .page-gdpr .hero-description {
    font-size: 0.95em;
  }
  .page-gdpr .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-gdpr .section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .page-gdpr .list-icon li img, .page-gdpr .contact-list li img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 1.3em;
  }
}