.modal__content-tax-image {
    margin: 0 0 10px;
}
.modal__content-tax-text {
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 1.6;
}
.modal__content-tax-text span {
    font-weight: 500;
}
.modal__content-tax-title {
    color: #111;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
}
.modal__content-tax-title span {
    color: #fa724e;
}
.modal__content-tg {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    background: #2481cc;
    padding: 10px;
    border-radius: 16px;
    text-decoration: none;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    outline: none !important;
}
.modal__content-tg svg {
    width: 40px;
    height: 40px;
    fill: #2481cc;
    animation: pulse 1.5s infinite alternate;
}
.modal__content-tg:hover {
    background: #2b6ca1;
}
.modal__content-tg:hover svg {
    fill: #2b6ca1;
}
@keyframes pulse {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(-10deg); }
}