.tc-pp-section {
    padding: 80px 0;

    @media screen and (max-width:768px) {
        padding: 56px 0;
    }

    h2 {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        color: $color-secondary;
        margin-bottom: 8px;
        font-family: $font-family-sora;

        @media screen and (max-width:768px) {
            font-size: 24px;
        }
    }

    h6 {
        font-size: 18px;
        font-weight: 500;
        color: $color-dark;
        margin-bottom: 56px;
        text-align: center;

        @media screen and (max-width:768px) {
            font-size: 16px;
            margin-bottom: 32px;
        }
    }

    h3 {
        font-weight: 700;
        margin-bottom: 8px;
        color: $color-dark;

        @media screen and (max-width:768px) {
            font-size: 18px;
        }
    }

    p {
        font-size: 18px;
        color: $color-dark;
        font-weight: 400;
        margin-bottom: 32px;

        @media screen and (max-width:768px) {
            font-size: 16px;
        }

        &:last-child {
            margin-bottom: 0;
        }
    }

    ul {
        margin-bottom: 32px;

        li {
            list-style-type: disc;
            font-size: 18px;
            color: $color-dark;
            font-weight: 400;

            @media screen and (max-width:768px) {
                font-size: 16px;
            }
        }
    }
}