.page-terms-conditions {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensuring consistent dark background */
}

.page-terms-conditions__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 80px;
  text-align: center;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-terms-conditions__button--register {
  background-color: #FCBC45;
  color: #000000; /* Text color for register button as per custom colors */
  border: 2px solid #FCBC45;
}

.page-terms-conditions__button--register:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__section-wrapper {
  padding: 30px;
}

.page-terms-conditions__section-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FCBC45;
  padding-bottom: 15px;
}

.page-terms-conditions__subsection-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.page-terms-conditions__link:hover {
  color: #e6a73a;
  text-decoration: underline;
}

.page-terms-conditions__button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  margin-right: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-terms-conditions__button--login {
  background-color: #FCBC45; /* Login button color as per custom colors */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-terms-conditions__button--login:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-terms-conditions__button--support {
  background-color: #444444;
  color: #ffffff;
  border: 2px solid #444444;
}

.page-terms-conditions__button--support:hover {
  background-color: #555555;
  transform: translateY(-2px);
}

/* 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;
  }
  .page-terms-conditions__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }
  .page-terms-conditions__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-terms-conditions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions__content-area {
    padding: 30px 15px;
  }
  .page-terms-conditions__section-wrapper {
    padding: 20px;
  }
  .page-terms-conditions__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-terms-conditions__subsection-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-terms-conditions__paragraph {
    font-size: 0.95em;
  }
  .page-terms-conditions__button {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  /* Mobile content area image overflow prevention */
  .page-terms-conditions__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__hero-description {
    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__hero-button {
    width: 100%;
  }
}

/* Ensure content area images are not too small */
.page-terms-conditions__content-area img {
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
}

/* No filter properties to change image colors */
.page-terms-conditions__content-area img {
  filter: none; /* Explicitly ensure no filters */
}