.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ nhạt trên nền tối */
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-terms-conditions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions .hero-banner {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  padding: 20px;
}

.page-terms-conditions .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-terms-conditions .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-terms-conditions .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.page-terms-conditions .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-terms-conditions .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-terms-conditions .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Vàng */
  color: #1A1A1A; /* Đen đậm */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions .cta-button:hover {
  background-color: #e6c200; /* Vàng đậm hơn khi hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .content-section {
  padding: 60px 0;
  background-color: #2A2A2A;
}

.page-terms-conditions .section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  margin-top: 40px;
}

.page-terms-conditions .subsection-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-terms-conditions ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-terms-conditions ul li {
  margin-bottom: 10px;
}

.page-terms-conditions .link-text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions .link-text:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-terms-conditions .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #333333;
  color: #FFD700;
  border: 1px solid #444444;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-terms-conditions .faq-question:hover {
  background-color: #444444;
}

.page-terms-conditions .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700;
}

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

.page-terms-conditions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-terms-conditions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #2A2A2A;
  color: #E0E0E0;
  padding: 0 25px;
  border-radius: 0 0 8px 8px;
  border: 1px solid #444444;
  border-top: none;
}

.page-terms-conditions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-terms-conditions .faq-answer p {
  margin-bottom: 0;
}

.page-terms-conditions .call-to-action {
  background-color: #1A1A1A;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-terms-conditions .cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-terms-conditions .cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-terms-conditions .hero-title {
    font-size: 2.8em;
  }
  .page-terms-conditions .hero-description {
    font-size: 1.1em;
  }
  .page-terms-conditions .section-title {
    font-size: 2em;
  }
  .page-terms-conditions .subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-banner {
    height: 400px;
    padding: 15px;
  }
  .page-terms-conditions .hero-title {
    font-size: 2.2em;
  }
  .page-terms-conditions .hero-description {
    font-size: 1em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions .content-section {
    padding: 40px 0;
  }
  .page-terms-conditions .section-title {
    font-size: 1.8em;
    text-align: center;
  }
  .page-terms-conditions .subsection-title {
    font-size: 1.3em;
  }
  .page-terms-conditions ul {
    margin-left: 20px;
  }
  .page-terms-conditions .faq-question {
    padding: 15px 20px;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-terms-conditions .faq-answer {
    padding: 0 20px;
  }
  .page-terms-conditions .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-terms-conditions .call-to-action {
    padding: 60px 15px;
  }
  .page-terms-conditions .cta-title {
    font-size: 2.2em;
  }
  .page-terms-conditions .cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions .hero-banner {
    height: 350px;
  }
  .page-terms-conditions .hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .hero-description {
    font-size: 0.9em;
  }
  .page-terms-conditions .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions .subsection-title {
    font-size: 1.2em;
  }
  .page-terms-conditions .faq-question h3 {
    font-size: 1em;
  }
  .page-terms-conditions .cta-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .cta-description {
    font-size: 1em;
  }
}