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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 800px;
}

.page-gdpr__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero p {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  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, 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: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

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

.page-gdpr__section h2 {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr__section h3 {
  font-size: 1.5em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  color: #444444;
}

.page-gdpr__introduction p:first-of-type {
  font-size: 1.1em;
  font-weight: bold;
}

.page-gdpr__principles ul {
  list-style: none;
  padding: 0;
}

.page-gdpr__principles li {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__principles li h3 {
  color: #003366;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-gdpr__data-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__data-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-gdpr__data-item h3 {
  font-size: 1.4em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

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

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

.page-gdpr__right-item {
  background-color: #e6f2ff; /* Light blue */
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #003366;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__right-item h3 {
  color: #003366;
  font-size: 1.4em;
  margin-top: 0;
}

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

.page-gdpr__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-gdpr__security-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-gdpr__security-item h3 {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-gdpr__third-party-sharing ul {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
}

.page-gdpr__third-party-sharing li {
  margin-bottom: 10px;
  color: #444444;
}

.page-gdpr__third-party-sharing li strong {
  color: #003366;
}

.page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__contact strong {
  color: #003366;
}

.faq-list {
  margin-top: 40px;
}

.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: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

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

.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: #444444;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero h1 {
    font-size: 2.5em;
  }
  .page-gdpr__hero p {
    font-size: 1.1em;
  }
  .page-gdpr__section h2 {
    font-size: 2em;
  }
  .page-gdpr__principles li, .page-gdpr__data-item, .page-gdpr__right-item, .page-gdpr__security-item {
    padding: 25px;
  }
  .page-gdpr__data-icon, .page-gdpr__security-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-gdpr__hero h1 {
    font-size: 2em;
  }
  .page-gdpr__hero p {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__section h3 {
    font-size: 1.3em;
  }
  .page-gdpr__data-collection-grid, .page-gdpr__rights-list, .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 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;
  }
}