.integration-section {
    padding: 40px 20px;
    background-color: #f7fafd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.integration-content {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.integration-image {
    flex: 1;
    max-width: 50%;
    background-image: url('../../assets/images/home/bg-vector.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.custom-integration-image{
    max-width: 100%;
    height: auto;
}



.integration-text {
    flex: 1;
    max-width: 50%;
}



.integration-text-heading {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    
}


.integration-text p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin: 20px 0px;
}

.integration-list-heading{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 10px 0px;
    line-height: 160%;
}
.integration-list-ul{
    padding: 0px 20px;
}
.integration-list{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    /* margin: 20px 0px; */
    line-height: 160%;
    list-style: disc;
}


@media screen and (min-width:993px ) and (max-width: 1199px) {}
@media screen and (min-width:769px ) and (max-width: 992px) {}

@media screen and (max-width: 768px) {
    .integration-content {
        width: 100%;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        
    }
    .integration-text {
        flex: 1;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .integration-text-heading {
        font-size: 24px;
        line-height: 140%;
        margin: 0;
        padding: 0;
        /* Smaller heading */
    }
    
    
}
/* General section padding adjustments for mobile */
@media (max-width: 480px) {
    .integration-section {
        padding: 32px 20px;
        /* Adjust padding for mobile */
    }

    /* Stack content vertically on mobile */
    .integration-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    /* Make image and text full width on mobile */
    .integration-image,
    .integration-text {
        flex: 1;
        max-width: 100%;
        text-align: center;
        /* Center the text */
    }

    

    /* Reduce font sizes for mobile */
    .integration-text-heading {
        font-size: 24px;
        line-height: 140%;
        margin: 0;
        padding: 0;
        /* Smaller heading */
    }
  

    .integration-text p, .integration-list-heading, .integration-list {
        font-size: 14px;
        /* Smaller paragraph text */
    }
    .integration-list-ul{
        text-align: start;
    }

    /* Button size for mobile */
    .btn-learn-more {
        font-size: 12px;
        /* Smaller button text */
        padding: 8px 16px;
        /* Adjust button padding */
    }
}