/* style/gdpr.css */
.page-gdpr {
  color: #f0f0f0; /* Sử dụng màu chữ nhạt cho nền tối */
  background: var(--dark-bg-1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-banner {
  background-color: #0A2463;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__container--hero {
  padding-top: 0;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: #E0B14A;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E0B14A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-gdpr__image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}

.page-gdpr__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.page-gdpr__image-wrapper--center {
  margin-top: 40px;
}

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

.page-gdpr__right-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #E0B14A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__right-card p {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-gdpr__protection-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-title {
  font-size: 1.3em;
  color: #E0B14A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__list-item p {
  color: #e0e0e0;
  font-size: 0.95em;
}

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

.page-gdpr__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-gdpr__contact-info {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__link {
  color: #E0B14A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-gdpr__cta-text {
  text-align: center;
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-gdpr__btn--primary {
  background-color: #E0B14A;
  color: #0A2463;
}

.page-gdpr__btn--primary:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 177, 74, 0.4);
}

/* FAQ Section */
.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E0B14A;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #ffd700;
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #e0e0e0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 5px 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__content-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image-wrapper img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-banner {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .page-gdpr__main-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-gdpr__rights-grid,
  .page-gdpr__protection-list,
  .page-gdpr__process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__right-card,
  .page-gdpr__list-item,
  .page-gdpr__step-card {
    padding: 20px;
  }

  .page-gdpr__card-title,
  .page-gdpr__list-title {
    font-size: 1.2em;
  }

  .page-gdpr__faq-question {
    padding: 15px;
  }
  
  .page-gdpr__faq-question h3 {
    font-size: 1em;
  }
  
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-wrapper,
  .page-gdpr__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}