.wa-faq-container-3c6090df {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: sans-serif;
}
.wa-faq-bubble-3c6090df {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.wa-faq-bubble-3c6090df:hover {
    transform: scale(1.05);
}
.wa-faq-bubble-3c6090df svg {
    width: 35px;
    height: 35px;
}
.wa-faq-panel-3c6090df {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.wa-faq-container-3c6090df.is-open .wa-faq-panel-3c6090df {
    display: flex;
    animation: slideUp3c 0.3s ease forwards;
}
@keyframes slideUp3c {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wa-faq-header-3c6090df {
    background: #075E54;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
}
.wa-faq-body-3c6090df {
    padding: 15px;
    background: #e5ddd5;
    height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wa-faq-message-3c6090df {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    align-self: flex-start;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.wa-faq-message-3c6090df.system-msg {
    border-top-left-radius: 0;
}
.wa-faq-message-3c6090df.user-msg {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
}
.wa-faq-questions-3c6090df {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}
.wa-faq-q-btn-3c6090df {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    color: #333;
}
.wa-faq-q-btn-3c6090df:hover {
    background: #f0f0f0;
}
.wa-faq-footer-3c6090df {
    padding: 15px;
    background: #f0f0f0;
    text-align: center;
}
.wa-faq-cta-3c6090df {
    display: inline-block;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.2s;
}
.wa-faq-cta-3c6090df:hover {
    background: #1ebe5d;
    color: #fff;
}
