.qa-section {
    margin-top: 60px;
    padding: 30px;
    background: #f9fafc;
    border-radius: 12px;
}

.chat-box {
    margin-top: 20px;
}

.chat-message {
    display: flex;
    margin-bottom: 20px;
}

.chat-message.client {
    flex-direction: row;
}

.chat-message.admin {
    flex-direction: row-reverse;
}

.avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    max-width: 75%;
    padding: 15px;
    border-radius: 12px;
    margin: 0 10px;
    background: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.admin .message-content {
    background: #e6f0ff;
}

.message-header {
    font-size: 0.85em;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    color: #666;
}

.ask-question {
    width: 95%;
    margin-top: 40px;
    padding: 30px;
    background: aliceblue;
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 2%;

}

.ask-question form {
    display: flex;
    flex-direction: column;
}

.ask-question input,
.ask-question textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.ask-question button {
    padding: 12px;
    background: #1d3557;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.ask-question button:hover {
    background: #457b9d;
}

.chat-message {
    display: flex;
    margin-bottom: 20px;
}

.chat-message.client {
    justify-content: flex-start;
}

.chat-message.admin {
    justify-content: flex-end;
}

.bubble {
    max-width: 75%;
    padding: 15px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.admin .bubble {
    background: #e6f0ff;
}

.bubble-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.bubble-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.bubble-name {
    font-weight: 600;
    margin-right: 10px;
}

.bubble-date {
    color: #777;
    font-size: 0.8em;
}