.page-gdpr {
  background-color: #08160F; /* Nền */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as per rule */
  text-align: center;
  background-color: #0A4B2C; /* Deep Green for hero background */
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px; /* Max width for image within container */
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1;
  color: #F2FFF6;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Call to Action Buttons */
.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-gdpr__btn-secondary:hover {
  background: #57E38D; /* Glow */
  color: #08160F; /* Nền */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

/* General Section Styling */
.page-gdpr__section {
  padding: 50px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  line-height: 1.3;
}

.page-gdpr__subsection-title {
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-gdpr__text-block a:hover {
  text-decoration: underline;
}

/* Grid Layout for Principles */
.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Card Styling */
.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Viền */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__card-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

/* List Styling */
.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 4px solid #57E38D; /* Glow */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__list-item strong {
  color: #F2C14E; /* Gold */
}

/* Feature Grid */
.page-gdpr__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Viền */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__feature-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-gdpr__feature-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-gdpr__contact-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-item strong {
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 30px;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 10px;
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__faq-answer p {
  margin: 0;
}

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

  .page-gdpr__main-title {
    line-height: 1.25;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

  .page-gdpr__section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-gdpr__main-title {
    line-height: 1.3;
  }

  .page-gdpr__intro-text {
    font-size: 0.95em;
  }

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

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

  /* Mobile image responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure width is 100% for images */
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile video responsive (if any, though none on this page) */
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile container responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-content,
  .page-gdpr__feature-card,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Mobile button responsive */
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 2em; /* Adjust as needed, but not fixed to be too big */
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    font-size: 0.95em;
    padding: 12px 20px;
  }
}

/* Ensure no filter on images */
.page-gdpr img {
  filter: none !important;
}

/* Ensure content area images are at least 200px */
.page-gdpr__feature-icon {
  min-width: 200px;
  min-height: 200px;
}