.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-terms-conditions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  overflow: hidden;
}

.page-terms-conditions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-terms-conditions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.page-terms-conditions__hero-image img:hover {
  transform: scale(1.02);
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-terms-conditions__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.6);
}

.page-terms-conditions__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF3E6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
  border: none;
}

.page-terms-conditions__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

.page-terms-conditions__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
  margin-top: 20px;
}

.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #A84F0C; /* Border color */
  color: #FFF3E6; /* Text Main */
}

.page-terms-conditions__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #FFA53A; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid #D96800; /* Deep Orange */
  padding-bottom: 10px;
  line-height: 1.3;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
  color: #FFF3E6;
}

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

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
}

.page-terms-conditions__list-item strong {
  color: #FFA53A;
}

.page-terms-conditions__image-wrapper {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

.page-terms-conditions__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page-terms-conditions__contact-cta {
  background-color: rgba(255, 140, 26, 0.1);
  border: 1px solid #FF8C1A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.2);
}

.page-terms-conditions__contact-cta p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #FFF3E6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-terms-conditions__hero-image {
    margin-bottom: 20px;
    border-radius: 4px;
  }

  .page-terms-conditions__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-terms-conditions__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-terms-conditions__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-terms-conditions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-terms-conditions__content-area {
    padding: 25px 15px;
    border-radius: 5px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-terms-conditions__section-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }

  .page-terms-conditions p,
  .page-terms-conditions__list-item {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-terms-conditions__list {
    margin-left: 20px;
  }

  .page-terms-conditions__image-wrapper {
    margin: 20px 0;
    border-radius: 4px;
  }

  .page-terms-conditions__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-terms-conditions__contact-cta {
    padding: 20px;
    margin-top: 30px;
  }

  .page-terms-conditions__contact-cta p {
    font-size: 16px;
  }

  .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;
  }

  .page-terms-conditions__cta-buttons,
  .page-terms-conditions__button-group,
  .page-terms-conditions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-terms-conditions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

/* Color Contrast Fixes (if needed) */
.page-terms-conditions__light-bg {
  color: #333333; /* Fallback for light backgrounds if any */
  background: #ffffff;
}

.page-terms-conditions__dark-bg {
  color: #ffffff; /* Explicit for dark backgrounds */
  background: #17191F;
}

.page-terms-conditions p,
.page-terms-conditions li {
  color: #FFF3E6;
}

.page-terms-conditions a {
  color: #FFA53A; /* Link color */
  text-decoration: underline;
}

.page-terms-conditions a:hover {
  color: #FFB04D;
}