
.specs-section {
    background: #fff;
    padding: 20px 0px;
    font-family: 'Poppins', sans-serif;
}

.specs-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    
}

.specs-container {
    display: flex;
    gap: 20px;
    margin: 0px;
    }

.specs-column {
    flex: 1;
    min-width: 0;
}


.table-wrapper {
    padding: 1px;
    background: transparent;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;

    box-shadow: 0 0 0 1px #d1d1d1; 
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    font-size: 16px;
    line-height: 1.5;
}


.specs-table td:last-child { border-right: none; }
.specs-table tr:last-child td { border-bottom: none; }

.spec-label {
    font-weight: 600;
    width: 35%;
    background-color: #fafafa;
    font-size: 16px;
}


@media (max-width: 992px) {
    .specs-container { flex-direction: column; gap: 20px; }
    .specs-title { font-size: 22px; }
}
