.help{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 50%;
    flex: 1;
}

.help-header{
    display: flex;
    gap: 0.8rem;
}

.help-header p{
    font-size: 1.3rem;
    font-weight: bold;
}

.help-tile-list{
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: white;
    gap:1rem;
    border-radius: 16px;
}

.help-tile-list-title{
    font-weight: 600;
    color: #141414;
}

/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .help{
        max-width: 100%;
    }

    .help-tile-list{
        padding: 0;
    }

    .help-header p{
        font-size: 1.125rem;
        line-height: 1.6rem;
    }
}