.title-h3 {
    text-align: center;
    margin: 20px 0 30px;
    font-size: 24px;
}

.steps-container {
    padding-bottom: 0px;
}

.steps-container .step-content p {
    max-width: 450px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.products h3 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.products p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}

.products_dec {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.product-card {
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 360px;
    max-width: 380px;
    background: #F7F9FA;
}

.product-card img {
    height: 60px;
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.features {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;

}

.feature img {
    width: 18px;
    height: 18px;
}

.common-img{
    margin-bottom: 70px;
}

.custom-bottom-10{
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .title-h3 {
        font-size: 18px;
        text-align: left;
        margin-bottom: 15px;
    }

    .products {
        gap: 20px;
        margin-bottom: 50px;
    }

    .product-card {
        padding: 20px 20px;
        min-width: 280px;
    }
    .features {
        display: block;
        gap: 20px;
        padding:10px 0;
    }
    .products_dec{
        text-align: left;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    h2 {
        margin-bottom: 10px;
    }

    .product-card {
        min-width: 280px;
        padding: 20px;
    }

    .products {
        gap: 20px;
        margin-bottom: 50px;
    }

    .features {
        justify-content: center;
    }
}