.pt-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Item */
.pt-faq-item {
    border: 1px solid #ededed;
    border-radius: 999px;
    background: #fffbfb;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question */
.pt-faq-question {
    padding: 16px 56px 16px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    position: relative;
    line-height: 1.4;
}

/* Plus / Minus icon */
.pt-faq-question::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    background: #fff;
}

/* Active state */
.pt-faq-item.active {
    border-radius: 20px;
}

.pt-faq-item.active .pt-faq-question::after {
    content: "−";
}

/* Answer */
.pt-faq-answer {
    display: none;
    padding: 0 22px 18px 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pt-faq-question {
        font-size: 14px;
        padding: 14px 48px 14px 18px;
    }

    .pt-faq-answer {
        font-size: 13.5px;
        padding: 0 18px 16px 18px;
    }

    .pt-faq-question::after {
        right: 12px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}
