.page-terms-conditions {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-terms-conditions__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
  background-color: #121212; /* Match body background */
  text-align: center;
  overflow: hidden;
}

.page-terms-conditions__hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__hero-image {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.2; /* Subtle background */
}

.page-terms-conditions__hero-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-terms-conditions__main-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFD700; /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.page-terms-conditions__intro-text {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 2;
}

.page-terms-conditions__content-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: #ffffff;
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-terms-conditions__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700; /* Gold for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 2px solid #8B0000; /* Deep red underline */
  padding-bottom: 10px;
}

.page-terms-conditions__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #f0f0f0;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-terms-conditions__link {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-terms-conditions__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

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

@media (max-width: 1024px) {
  .page-terms-conditions__main-title {
    font-size: 40px;
  }

  .page-terms-conditions__intro-text {
    font-size: 17px;
  }

  .page-terms-conditions__section-title {
    font-size: 28px;
  }

  .page-terms-conditions__sub-title {
    font-size: 22px;
  }

  .page-terms-conditions__paragraph,
  .page-terms-conditions__list-item {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-container {
    padding: 40px 15px;
  }

  .page-terms-conditions__main-title {
    font-size: 32px;
  }

  .page-terms-conditions__intro-text {
    font-size: 16px;
  }

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

  .page-terms-conditions__section-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-terms-conditions__sub-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-terms-conditions__paragraph,
  .page-terms-conditions__list-item {
    font-size: 14px;
  }

  /* Mobile image responsiveness */
  .page-terms-conditions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-terms-conditions__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Ensure hero image fills height */
  }

  .page-terms-conditions__container,
  .page-terms-conditions__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* No specific buttons on this page to apply button responsive rules, but for completeness: */
  .page-terms-conditions a[class*="button"],
  .page-terms-conditions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}