.finance-helpers__title {
    padding: 0;
}

.finhelpers-card {
    display: block;
    height: 100%;
    padding: 49px 30px 53px 39px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 21px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .finhelpers-card {
        padding: 48px 22px 38px 30px;
    }
}

@media (max-width: 430px) {
    .finhelpers-card {
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 18px 16px 20px;
    }
}

.finhelpers-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 430px) {
    .finhelpers-card__icon {
        max-width: 40px;
    }
}

.finhelpers-card__title {
    margin-top: 65px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--black);
}

@media (max-width: 768px) {
    .finhelpers-card__title {
        margin-top: 58px;
        font-size: 22px;
    }
}

@media (max-width: 430px) {
    .finhelpers-card__title {
        margin-top: 0;
        font-size: 20px;
    }
}

.finhelpers-card__description {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: var(--black);
}

@media (max-width: 768px) {
    .finhelpers-card__description {
        margin-top: 13px;
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .finhelpers-card__description {
        display: none;
    }
}


