.page-terms-conditions {
  color: #f0f0f0; /* Sử dụng màu chữ nhạt cho nền tối */
  background-color: #000000; /* Nền tối của body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-terms-conditions__hero-section {
  position: relative;
  padding: 120px 20px 60px; /* Thêm padding-top để tránh header cố định */
  text-align: center;
  background: linear-gradient(135deg, #CC0000, #990000); /* Gradient sử dụng màu chủ đạo */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFD700; /* Màu vàng phụ trợ cho tiêu đề chính */
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-terms-conditions__hero-description a {
  color: #FFD700; /* Link trong mô tả */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__hero-description a:hover {
  color: #ffffff;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Màu vàng phụ trợ cho CTA */
  color: #1a1a1a; /* Màu chữ tối cho nút vàng */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-terms-conditions__cta-button:hover {
  background: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button--secondary {
  background: #CC0000;
  color: #ffffff;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-terms-conditions__cta-button--secondary:hover {
  background: #990000;
  border-color: #e0b800;
}

.page-terms-conditions__content-section {
  padding: 60px 20px;
  background-color: #000000; /* Giữ nền tối */
  color: #f0f0f0; /* Chữ nhạt */
}

.page-terms-conditions__article {
  background: rgba(255, 255, 255, 0.05); /* Nền hơi trong suốt */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #cccccc;
}

.page-terms-conditions__paragraph a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__paragraph a:hover {
  color: #ffffff;
}

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

.page-terms-conditions__image--full-width {
  width: 100%;
}

.page-terms-conditions__contact-cta-section {
  background: #1a1a1a;
  padding: 80px 20px;
  text-align: center;
  color: #f0f0f0;
}

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

.page-terms-conditions__contact-cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #cccccc;
}

.page-terms-conditions__contact-cta-description a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__contact-cta-description a:hover {
  color: #ffffff;
}

.page-terms-conditions__image-gallery-section {
  padding: 60px 20px;
  background-color: #000000;
  color: #f0f0f0;
}

.page-terms-conditions__gallery-title {
  font-size: 2.5em;
  text-align: center;
  color: #FFD700;
  margin-bottom: 40px;
}

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

.page-terms-conditions__gallery-item {
  background: rgba(255, 255, 255, 0.08); /* Nền hơi trong suốt */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-terms-conditions__gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-terms-conditions__gallery-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-terms-conditions__gallery-item-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px;
}

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

  .page-terms-conditions__heading {
    font-size: 2em;
  }

  .page-terms-conditions__sub-heading {
    font-size: 1.4em;
  }

  .page-terms-conditions__article {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding: 100px 15px 40px; /* Mobile padding-top */
  }

  .page-terms-conditions__main-title {
    font-size: 2.5em;
  }

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

  .page-terms-conditions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important;
  }

  .page-terms-conditions__cta-button--secondary {
    margin-left: 0 !important;
  }

  .page-terms-conditions__content-section {
    padding: 40px 15px;
  }

  .page-terms-conditions__article {
    padding: 25px;
  }

  .page-terms-conditions__heading {
    font-size: 1.8em;
    margin-top: 30px;
  }

  .page-terms-conditions__sub-heading {
    font-size: 1.3em;
  }

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

  .page-terms-conditions__image,
  .page-terms-conditions__gallery-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-terms-conditions__image-gallery-section {
    padding: 40px 15px;
  }

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

  .page-terms-conditions__gallery-item-title {
    font-size: 1.2em;
  }

  .page-terms-conditions__contact-cta-section {
    padding: 60px 15px;
  }

  .page-terms-conditions__contact-cta-title {
    font-size: 2em;
  }

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

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

  .page-terms-conditions__heading {
    font-size: 1.6em;
  }

  .page-terms-conditions__sub-heading {
    font-size: 1.2em;
  }

  .page-terms-conditions__article {
    padding: 20px;
  }

  .page-terms-conditions__cta-button {
    font-size: 0.9em !important;
    padding: 10px 20px !important;
  }
}