.specs-section {
padding: 5rem 0;
background: #fff;
min-height: 60vh;
}

.specs-container {
max-width: 900px;
margin: 0 auto;
}

.spec-category {
margin-bottom: 3rem;
background: #f8f9fa;
padding: 2.5rem;
border-radius: 12px;
border-left: 5px solid #0070d1;
}

.spec-category h2 {
color: #0070d1;
font-size: 1.6rem;
margin-bottom: 1.5rem;
padding-bottom: 0.8rem;
border-bottom: 2px solid #dee2e6;
}

.spec-list {
display: flex;
flex-direction: column;
gap: 1rem;
}

.spec-item {
display: flex;
justify-content: space-between;
padding: 1.2rem;
background: #fff;
border-radius: 8px;
align-items: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.spec-label {
font-weight: 700;
color: #0070d1;
font-size: 1rem;
}

.spec-value {
color: #1a1a1a;
text-align: right;
font-weight: 600;
}

@media (max-width: 768px) {
.spec-item {
flex-direction: column;
text-align: center;
gap: 0.5rem;
}
.spec-value {
text-align: center;
}
}