/* style/gdpr.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background: #08160F; /* Background */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  box-sizing: border-box;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__section {
  padding: 80px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__section--dark-bg {
  background: #11271B; /* Card BG */
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__section-intro-text {
  text-align: center;
  font-size: 1.05rem;
  color: #A7D9B8;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-gdpr__text-block {
  margin-bottom: 30px;
  background: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__text-block:last-child {
  margin-bottom: 0;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
}

.page-gdpr p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-gdpr__image-content-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__list-block {
  margin-bottom: 30px;
  background: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #F2C14E; /* Gold accent */
}

.page-gdpr__list-block:last-child {
  margin-bottom: 0;
}

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

.page-gdpr__rights-item {
  background: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #2E7A4E;
}

.page-gdpr__rights-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-gdpr__rights-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-gdpr__inline-link {
  color: #57E38D;
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: #2AD16F;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__grid-item {
  background: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #2E7A4E;
}

.page-gdpr__grid-item .page-gdpr__sub-title {
  color: #F2C14E;
}

.page-gdpr__contact-info {
  background: #0A4B2C; /* Deep Green */
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #2E7A4E;
}

.page-gdpr__contact-text {
  font-size: 1.1rem;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__contact-item {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 10px;
}

.page-gdpr__contact-item a {
  color: #57E38D;
  text-decoration: none;
}

.page-gdpr__contact-item a:hover {
  text-decoration: underline;
}

.page-gdpr__contact-note {
  font-style: italic;
  color: #A7D9B8;
  font-size: 0.9rem;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  font-size: 1rem;
}

/* Details element specific styling */
.page-gdpr__faq-item summary {
  list-style: none;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

  .page-gdpr__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-gdpr__section {
    padding: 50px 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-gdpr__section-intro-text {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .page-gdpr__text-block {
    padding: 20px;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

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

  .page-gdpr__rights-item {
    padding: 25px;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-gdpr__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__grid-item {
    padding: 25px;
  }

  .page-gdpr__contact-info {
    padding: 30px 20px;
  }

  .page-gdpr__contact-text {
    font-size: 1rem;
  }

  .page-gdpr__contact-item {
    font-size: 0.9rem;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* Responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-content-wrapper,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Ensure no horizontal scroll */
  .page-gdpr {
    overflow-x: hidden;
  }
}

/* Ensure all content area images are at least 200px */
.page-gdpr img:not(.shared-logo):not(.shared-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* No filter on images */
.page-gdpr img {
  filter: none;
}