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

.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, #4B0082, #6a0dad);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.page-terms-conditions__title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for highlight */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-terms-conditions__content-section {
  padding: 50px 0;
  background-color: #fff;
}

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

.page-terms-conditions__heading {
  font-size: 1.8em;
  color: #4B0082; /* Deep purple for headings */
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
  font-weight: 600;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #333;
}

.page-terms-conditions__article ol,
.page-terms-conditions__article ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-terms-conditions__article li {
  margin-bottom: 10px;
  color: #333;
}

.page-terms-conditions__article strong {
  color: #4B0082;
}

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

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #eee;
}

.page-terms-conditions__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #4B0082; /* Deep purple text for contrast */
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-terms-conditions__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.2em;
  }

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

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

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

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 1.8em;
  }

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

  .page-terms-conditions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}