.tnc_page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 var(--p_xl);
}

.tnc_hero {
  text-align: center;
  margin-bottom: 28px;
}

.tnc_hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.95;
}

.tnc_hero p {
  margin: 18px auto 0;
  color: rgba(0, 0, 0, 0.62);
}

.tnc_card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  background: var(--light);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.tnc_tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tnc_tabs .nav-item,
.tnc_tabs .nav-link {
  width: 100%;
}

.tnc_tabs .nav-link {
  border: 0;
  border-radius: 18px;
  padding: 15px 18px;
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  background: var(--light2);
  transition: 0.25s ease;
}

.tnc_tabs .nav-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.tnc_tabs .nav-link.active {
  color: #fff;
  background: var(--dark);
}

.tnc_tab_content {
  padding: clamp(22px, 4vw, 44px);
}

.tnc_content_header {
  margin-bottom: 24px;
}

.tnc_content_header h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 4vw, 46px);
  line-height: clamp(28px, 4vw, 46px);
  font-weight: 700;
}

.tnc_content_header p {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.58);
}

.tnc_list {
  display: grid;
  gap: 14px;
}

.tnc_item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  transition: 0.25s ease;
}

.tnc_item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
}

.tnc_item h3 {
  margin: 0 0 7px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
}

p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 16px;
}

@media (max-width: 767px) {
  .tnc_page {
    width: min(100% - 22px, 1120px);
    padding-top: 108px;
  }

  .tnc_card {
    border-radius: 22px;
  }

  .tnc_tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tnc_item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }
}
