/* ================================================
   TERMS AND CONDITIONS PAGE – CUSTOM STYLES
   ================================================ */

/* ---------- Reset & Base overrides ---------- */
body {
  background-color: #f5f6f8;
}

/* ---------- Top Banner Section ---------- */
.at-banner {
  background-color: #031131;
  width: 100%;
  min-height: 120px; /* Shorter banner since we don't have a specific image right now */
  display: flex;
  align-items: center;
  padding: 48px 0;
}

/* ---------- Content Container & Card ---------- */
.at-terms-container {
  width: 100%;
  padding: 36px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.at-terms-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.at-terms-card__section {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .10196078431372549);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.at-terms-card__title {
  font-size: 25px;
  font-weight: 600;
  color: #0a218d;
}

.at-terms-card__text {
  font-size: 14px;
  font-weight: 400;
  color: #070707;
  line-height: 26px;
  text-align: justify;
}

.at-terms-card__list {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #070707;
  line-height: 26px;
  list-style-type: disc;
}

.at-terms-card__list li {
 margin-bottom: 8px;
    line-height: 19px;
    font-size: 14px;
}
.at-terms-card__list li:last-child{
  margin-bottom: 0;
}
/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 768px) {
  .at-banner {
    padding: 40px 0;
    min-height: 100px;
  }

  .at-terms-container {
    padding: 24px 16px;
  }

  .at-terms-card__title {
    font-size: 22px;
  }

  .at-terms-card__text {
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .at-terms-card__section {
    padding: 15px;
  }

  .at-terms-card__title {
    font-size: 20px;
  }
}
