#items .content .item {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    width: 100%;

    .title h2 {
        font-size: 20px;
        font-weight: 600;
    }

    .subitems {
        display: flex;
        flex-direction: column;
        gap: .9rem;

        p, ul li {
            font-size: 15px;
            line-height: 24px;
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: .4rem;

            li {
                list-style-type: disc;
                list-style-position: inside;
            }
        }
    }
}

@media (max-width: 768px) {
    #header .content .title-heading .title p { text-align: center; }

    #items .content .item {
        .title h2 { font-size: 18px; }

        .subitems {
            p, ul li { line-height: 26px; }
        }
    }
}