.page-terms-conditions {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-terms-conditions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #F4F7FB;
  padding-bottom: 40px;
}

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  max-width: 1390px; /* Aligns with boxed content max-width */
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-terms-conditions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-terms-conditions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  padding-top: 0; /* Ensures h1 doesn't create extra top space */
}

.page-terms-conditions__hero-description {
  font-size: 1.15em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
}

.page-terms-conditions__last-updated {
  font-size: 0.9em;
  color: #6FA3FF; /* Auxiliary color */
  font-style: italic;
}

.page-terms-conditions__content-section {
  padding: 40px 20px 80px;
  background-color: #FFFFFF; /* Card BG */
  border-top: 1px solid #D6E2FF; /* Border color */
}

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

.page-terms-conditions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-top: 50px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-terms-conditions__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

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

.page-terms-conditions__list-item strong {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-terms-conditions__inline-link {
  color: #2F6BFF; /* Primary color */
  text-decoration: underline;
  font-weight: 600;
}

.page-terms-conditions__inline-link:hover {
  color: #6FA3FF; /* Auxiliary color */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .page-terms-conditions__hero-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .page-terms-conditions__hero-content {
    padding: 0 15px;
  }

  .page-terms-conditions__main-title {
    font-size: 2em; /* Smaller for mobile, still using relative unit */
    margin-bottom: 15px;
  }

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

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

  .page-terms-conditions__paragraph,
  .page-terms-conditions__list-item {
    font-size: 0.95em;
  }

  .page-terms-conditions__container img {
    max-width: 100%;
    height: auto; /* Ensures images are responsive */
  }
}

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

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

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