
.spec-wrapper {
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 40px 20px;
    margin: 40px 0;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}
.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    border: 2px solid #cbd5e1;
    background: #ffffff;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555555;
}
.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}
.spec-table tr:last-child td {
    border-bottom: none;
}
.spec-feature {
    font-weight: 600;
    color: #0047AB;
    width: 30%;
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .spec-wrapper {
        padding: 30px 16px;
    }
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table td {
        display: block;
        width: 100%;
    }
    .spec-table tr {
        margin-bottom: 20px;
        border: 2px solid #cbd5e1;
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
    }
    .spec-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        border-bottom: 1px solid #e2e8f0;
        gap: 12px;
        word-break: break-word;
        white-space: normal;
    }
    .spec-table td:last-child {
        border-bottom: none;
    }
    .spec-table td:first-child {
        background-color: #f8fafc;
        font-weight: 600;
    }
    .spec-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #0047AB;
        width: 35%;
        flex-shrink: 0;
    }
}
