/* FAQ Hero Section */
.faq-hero {
    text-align: center;
    padding: 90px 0 55px 0;
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
}

.faq-title {
    font-size: 2.3rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 12px;
}

.faq-desc {
    font-size: 1.18rem;
    color: #22223b;
    margin-bottom: 0;
}

/* FAQ List */

.faq-main-layout {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    align-items: flex-start;
}

.faq-list {
    flex: 2;
    max-width: 700px;
    margin: 3px auto 40px auto;
    padding: 0 16px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.2);
    margin-bottom: 18px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #2563eb;
    text-align: left;
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, color 0.2s;
}

.faq-question.active,
.faq-question:hover {
    background: #e0e7ff;
    color: #6b3fa0;
}

.faq-answer {
    display: none;
    font-size: 1.15rem;
    color: #22223b;
    padding: 0 22px 18px 54px;
    animation: fadeIn 0.4s;
    margin-top: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px);}
    to { opacity: 1; transform: translateY(0);}
}

.faq-chatbot {
    flex: 1;
    background: #f1f5f9;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    min-width: 280px;
    padding: 32px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.chatbot-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
}

.chatbot-messages {
    width: 100%;
    min-height: 120px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(37,99,235,0.04);
}

.chatbot-message {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #22223b;
}

.chatbot-message.bot {
    color: #2563eb;
}

.chatbot-form {
    display: flex;
    width: 100%;
    gap: 8px;
}

.chatbot-input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e0e7ff;
    font-size: 1rem;
    outline: none;
}

.chatbot-send {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 14px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.chatbot-send:hover {
    background: #6b3fa0;
}





.chatbot-coming-soon {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    padding: 32px 18px;
    text-align: center;
    margin-top: 0px;
}