.mkas-test-wrap {
   
    padding: 80px 0px;
    background-color: #ffffff;
   
}
.mkas-test-container {
     
    margin: 0 auto;
}
.mkas-test-head {
    text-align: center;
    margin-bottom: 48px;
}
.mkas-test-head h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}
.mkas-test-head p {
    font-size: 20px;
    color: #111111;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}
.mkas-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mkas-test-card {
    background-color: #e6f5ff;
    border-radius: 8px;
    padding: 32px 28px;
}
.mkas-test-quote-text {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
}
.mkas-test-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.mkas-test-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.mkas-test-author-info h4 {
    font-size: 20px;
    color: var(--color-second);
    font-weight: bold;
    margin-bottom: 4px;
}
.mkas-test-author-info p {
    font-size: 16px;
    color: #000000;
    line-height: 1.4;
}

 
@media(max-width:992px){
    .mkas-test-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .mkas-test-head h2{
        font-size: 34px;
    }
}
@media(max-width:640px){
    .mkas-test-grid{
        grid-template-columns: 1fr;
    }
    .mkas-test-wrap{
        padding: 50px 16px;
    }
    .mkas-test-head h2{
        font-size: 28px;
    }
    .mkas-test-head p{
        font-size: 17px;
    }
}