#home-section-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

#home-section-3 img {
    width: 65%;
    border-radius: 15px;
}

.home-section-3-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 33%;
    align-items: start;
    gap: 10px;
}

.home-section-3-inner div {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.home-section-3-inner p {
    margin-bottom: 0;
}

#home-section-3 .home-section-3-inner img {
    width: 70px;
    border-radius: 0;
}

#home-section-3 h2 {
    font-size: 1.8rem;
    margin: 0;
}

@media(max-width:756px) {
    #home-section-3 {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 20px;
        margin-bottom: 2rem;
    }

    #home-section-3 img {
        width: 100%;
    }

    .home-section-3-inner {
        width: 100%;
        gap: 20px;
    }

    .home-section-3-inner div {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #home-section-3 .home-section-3-inner img {
        width: 44px;
    }

    #home-section-3 h2 {
        font-size: 1.6rem;
    }

    .home-section-3-inner p {
        margin: 0;
    }
}