.page-terms-conditions {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-terms-conditions__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* Minimum height for hero */
}

.page-terms-conditions__hero-content {
  max-width: 900px;
}

.page-terms-conditions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-terms-conditions__button--register {
  background-color: #FFFFFF; /* White for register button */
  color: #000000; /* Black text for white background */
}

.page-terms-conditions__button--register:hover {
  background-color: #FCBC45; /* Login color on hover */
  color: #000000;
  transform: translateY(-3px);
}

.page-terms-conditions__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text for login button */
}

.page-terms-conditions__button--login:hover {
  background-color: #FFFFFF; /* White on hover */
  color: #000000;
  transform: translateY(-3px);
}

.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* White background for content */
}

.page-terms-conditions__article {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__article-heading {
  font-size: 2em;
  color: #000000; /* Dark text for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45; /* Highlight with accent color */
  padding-bottom: 10px;
}

.page-terms-conditions__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-terms-conditions__link:hover {
  color: #000000; /* Darker on hover */
}

.page-terms-conditions__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__call-to-action {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-terms-conditions__button--register-bottom {
  background-color: #FCBC45;
  color: #000000;
}

.page-terms-conditions__button--register-bottom:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-terms-conditions__button--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-terms-conditions__button--support:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

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

  .page-terms-conditions__intro-text {
    font-size: 1em;
  }

  .page-terms-conditions__hero-actions,
  .page-terms-conditions__call-to-action {
    flex-direction: column;
    gap: 15px;
  }

  .page-terms-conditions__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .page-terms-conditions__content-area {
    padding: 20px 15px;
  }

  /* Mobile content area image constraint */
  .page-terms-conditions__article-image {
    max-width: 100%;
    height: auto;
  }
}

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

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

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