.service-faq-accordion {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 8px 12px 12px 8px;
    border-left: 8px solid #1a1a1a45;
    box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}

.faq-question {
    width: auto;
    text-align: left;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #1a1a1a8c;
    border-bottom: 1px solid #f2f2f2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    border-top: solid 1px #f2f2f2;
    padding: 12px 24px;
}

.faq-item.active .faq-question,
.faq-question:hover {
    color: #1a1a1a;
}

.faq-item.active {
    border-left-color: #1a1a1a;
}