.qa-container {
    background: #2f343a;
    padding: 25px;
}

.qa-search {
    position: relative;
    margin-bottom: 20px;
}

.qa-search input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    border: 0;
    font-size: 16px;
    outline: none;
}

#qa-results {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    z-index: 999;
    overflow: hidden;
}

.qa-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
}

.qa-item:hover {
    background: #f5f5f5;
}

.qa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qa-buttons a {
    text-decoration: none;
    border: 1px solid #32d0df;
    color: #32d0df;
    padding: 6px 14px;
    border-radius: 999px;
    transition: 0.2s;
	font-size:14px;
}

.qa-buttons a:hover {
    background: #32d0df;
    color: #fff;
}