.text table {
    border: none;
    border-collapse: collapse;
    margin: 0;
}
        .text .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 1.5rem;
            border-radius: 20px;
        }

        .text table.price-table {
            width: 100%;
            background: #ffffff;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05), 0 0 0 1px #eef2f8;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }

        .text table.price-table thead tr {
            background: #0c4c98;
        }
     .text table.price-table th {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: white;
    padding: 1rem 1rem;
    text-align: left;
    background-color: #0c4c98;
    white-space: nowrap;
    border: none;
}

        .text table.price-table th:nth-child(2),
        .text table.price-table th:nth-child(3) {
            text-align: center;
        }

   .text table.price-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #eef2f8;
    color: #253746;
    font-size: 0.95rem;
    vertical-align: middle;
    background-color: #ffffff;
    border-top: none;
    border-left: none;
    border-right: none;
}
        .text table.price-table td:last-child {
            font-weight: 800;
            color: #0c4c98;
            font-size: 1rem;
            text-align: center;
            letter-spacing: -0.2px;
            background-color: #fefefe;
        }

        .text table.price-table td:nth-child(2) {
            text-align: center;
            color: #3f5a70;
        }

        .text table.price-table tbody tr:hover td {
            background-color: #f0f6ff;
            transition: background 0.2s ease;
        }

        .text table.price-table tbody tr:last-child td {
            border-bottom: none;
        }

        .price-table.extra-works td:last-child {
            font-weight: 700;
            color: #0c4c98;
        }

        @media (max-width: 768px) {
            .text table.price-table th,
            .text table.price-table td {
                padding: 0.7rem 0.6rem;
                font-size: 0.85rem;
            }
            .text table.price-table td:last-child {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 560px) {
            .text table.price-table {
                min-width: 500px;
            }
        }