.page-terms-conditions {
  color: #ffffff; /* Sắc độ chữ trắng cho nền tối */
  padding-top: var(--header-offset, 120px); /* Đảm bảo nội dung không bị che bởi header cố định */
}

.page-terms-conditions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Đảm bảo nội dung không bị che bởi header cố định */
}

.page-terms-conditions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Làm mờ hình ảnh nền để chữ dễ đọc hơn */
}

.page-terms-conditions__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Nền tối hơn cho chữ nổi bật */
  border-radius: 10px;
}

.page-terms-conditions__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Màu vàng chủ đạo */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-terms-conditions__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions__hero-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-terms-conditions__section {
  background-color: rgba(26, 26, 26, 0.8); /* Nền phụ trợ tối */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-terms-conditions__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-terms-conditions__call-to-action {
  text-align: center;
  background-color: #1A1A1A;
  padding: 50px 20px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__call-to-action-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-terms-conditions__call-to-action-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-terms-conditions__call-to-action-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-terms-conditions__call-to-action-button:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }

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

  .page-terms-conditions__section-title {
    font-size: 1.5em;
  }

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

  .page-terms-conditions__call-to-action-title {
    font-size: 1.8em;
  }

  .page-terms-conditions__call-to-action-text {
    font-size: 1.1em;
  }

  .page-terms-conditions__hero-section,
  .page-terms-conditions__content-area,
  .page-terms-conditions__call-to-action {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 1.6em;
  }

  .page-terms-conditions__hero-description {
    font-size: 0.9em;
  }

  .page-terms-conditions__hero-button,
  .page-terms-conditions__call-to-action-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.3em;
  }

  .page-terms-conditions__section-text {
    font-size: 0.9em;
  }

  .page-terms-conditions__call-to-action-title {
    font-size: 1.5em;
  }

  .page-terms-conditions__call-to-action-text {
    font-size: 1em;
  }
}