/* Q&A Style for Advantages */
.qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.qa-list-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-question {
    padding: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #f5f6f5;
}

.qa-question h3 {
    font-size: 1.4rem;
    margin: 0 0 0 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.qa-icon {
    font-size: 1.2rem;
    color: #00aaff;
    transition: transform 0.3s ease;
}

.qa-answer {
	font-size: 1.1rem;
    padding: 16px;
    display: none;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.8;
}

.qa-list-item.active .qa-answer {
    display: block;
}

.qa-list-item.active .qa-icon {
    transform: rotate(45deg);
}

/* Specifications Table */
.spec-container {
    max-width: 800px;
    margin: 0 auto;
}

.spec-table {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #1a1a1a;
}

.spec-value {
    color: #333;
}

.pagination-container {
    margin-top: 20px;
}