.customer-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 750px;
  margin: 40px auto;
}
.customer-total h3 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: bold;
  font-family: var(--f4);
  margin-bottom: 6px;
}
.customer-total p {
  width: 62%;
  line-height: 1.2;
  text-align: center;
}
.customer-total__links {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.customer-total__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #066fcb;
  color: var(--white);
  height: 50px;
  border-radius: 4px;
  gap: 8px;
  margin-top: 16px;
}
.customer-total__link span {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .customer-total__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .customer-total p {
    font-size: 20px;
  }
  .customer-total__link a {
    font-size: 18px;
  }
}
