.av-integration-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}
.av-integration-container{
    display: flex;
    flex-direction: column;
    width: 100%;

}

.av-integration-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.av-integration-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.av-integration-header-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.av-integration-header-content .av-integration-title{
    font-size: 4.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.av-integration-description{
     font-size: 2.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 10px;
}

.av-integration-products{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.av-product-card{
    display: flex;
    flex-direction: column;
    flex:1;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.av-product-image-wrapper{
    width:100%;
    border-radius: 10px;
    overflow: hidden;
}

.av-product-image-wrapper img{
    width: 100%;
    height:100%;
    object-fit: cover;
    object-position: center;
}

.av-product-content .av-product-title{
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.av-product-content .av-product-description{
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    text-align: left;
    margin-top: 10px;
}

@media (max-width:468px){
    .av-integration-title{
        font-size: 2.5rem;
    }
    .av-integration-description{
        font-size: 1.8rem;
       
    }
    .av-integration-products{
        flex-direction: column;
        align-items: center;
        row-gap:50px;
    }
}