/* Contact us page css */
.webnlive-ai-assistant-container {
    max-width: 700px;
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.webnlive-ai-assistant-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    text-align: center;
    border: none;
    padding: 4px;
}
.webnlive-ai-assistant-contact {
    font-size: 18px;
    color: #FF5733;
    font-weight: bold;
    text-align:center;
    padding: 7px;
}
.webnlive-ai-assistant-faq-container {
    margin-top: 30px;
}
.webnlive-ai-assistant-faq {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.webnlive-ai-assistant-faq summary {
    font-size: 18px;
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.webnlive-ai-assistant-faq summary:hover {
    background: #e9ecef;
}
.webnlive-ai-assistant-faq p {
    padding: 15px;
    font-size: 16px;
    color: #555;
    background: #fff;
    margin: 0;
    border-top: 1px solid #ddd;
}
.webnlive-ai-assistant-faq summary::after {
    content: "▼";
    font-size: 14px;
    transition: transform 0.3s ease;
}
details[open] summary::after {
    transform: rotate(180deg);
}