.mkas-faq-wrap {
    
    padding: 60px 0px;
  
    background: #ffffff;
}
.mkas-faq-container {
    
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}
.mkas-faq-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}
.mkas-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mkas-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.mkas-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    background: #fff;
}
.mkas-faq-plus-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #cceaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-second);
    font-weight: bold;
    transition: transform 0.2s ease;
}
.mkas-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    transition: all 0.3s ease;
}
.mkas-faq-item.active .mkas-faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}
.mkas-faq-item.active .mkas-faq-plus-btn {
    transform: rotate(45deg);
}

 
@media(max-width:900px){
    .mkas-faq-container{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mkas-faq-title{
        font-size: 32px;
    }
}
@media(max-width:600px){
    .mkas-faq-question{
        font-size: 17px;
        padding: 16px 18px;
    }
    .mkas-faq-plus-btn{
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}