.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 {
  background: linear-gradient(135deg, #0A192F, #1F3F66);
  padding: 60px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr-hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-gdpr-hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-gdpr-section h2 {
  font-size: 2.2em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-gdpr-section h3 {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 15px;
}

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

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

.page-gdpr-section ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444444;
}

.page-gdpr-section ul li strong {
  color: #0A192F;
}

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

.page-gdpr-grid-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr-grid-item h3 {
  color: #0A192F;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-gdpr-grid-item p {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  object-fit: cover;
}

.page-gdpr-full-width-image {
  max-width: 100%;
}

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

.page-gdpr-security-item {
  background-color: #eef4f8;
  padding: 20px;
  border-left: 5px solid #0A192F;
  border-radius: 5px;
}

.page-gdpr-security-item h3 {
  color: #0A192F;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-gdpr-security-item p {
  font-size: 1em;
  color: #444444;
}

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

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

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

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

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

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust based on content */
  padding: 15px 25px;
}

.faq-answer p {
  margin: 0;
  color: #555555;
}

.page-gdpr-conclusion {
  text-align: center;
  background-color: #0A192F;
  color: #E0E0E0;
  padding: 60px 0;
}

.page-gdpr-conclusion h2 {
  color: #FFD700;
}

.page-gdpr-conclusion h2::after {
  background-color: #E0E0E0;
}

.page-gdpr-conclusion p {
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.page-gdpr-conclusion a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr-conclusion a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero h1 {
    font-size: 2.2em;
  }
  .page-gdpr-hero p {
    font-size: 1em;
  }
  .page-gdpr-section h2 {
    font-size: 1.8em;
  }
  .page-gdpr-grid, .page-gdpr-grid-security {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 480px) {
  .page-gdpr-container {
    padding: 15px;
  }
  .page-gdpr-hero h1 {
    font-size: 1.5em;
  }
  .page-gdpr-hero p {
    font-size: 0.85em;
  }
  .page-gdpr-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr-section h2 {
    font-size: 1.3em;
  }
  .page-gdpr-section h3 {
    font-size: 1.1em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
}