/* Simple Q&A Styles */
.qa-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.qa-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.qa-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.qa-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.qa-question:hover {
    background-color: #f8f9fa;
}

.qa-answer {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.qa-item.active .qa-answer {
    display: block;
}

.qa-icon {
    transition: transform 0.3s ease;
}

.qa-item.active .qa-icon {
    transform: rotate(180deg);
}