.prices-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.category-title {
    font-family: 'Tektur', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    /* Убрана горизонтальная линия */
    padding-bottom: 10px;
}

.price-table {
    width: 100%;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #222;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-width: 600px;
}

.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.price-table tbody tr:hover {
    background-color: #333;
}

.price-table strong {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Tektur', sans-serif;
    font-size: 1.1rem;
}

/* Стиль для ячеек-заголовков внутри таблицы */
.price-table td[colspan="2"] {
    background-color: #FF8C00;
    text-align: left; /* Вирівняно по лівому краю */
    color: #000;
}

@media (max-width: 768px) {
    .prices-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .category-title {
        font-size: 1.8rem;
    }
}
