.vht-price-section {
    --vht-orange: rgb(243, 146, 0);
    --vht-blue: rgb(15, 112, 183);
    --vht-text: #243444;
    --vht-border: #dbe4ec;
    --vht-soft: #f5f9fc;
    width: 100%;
    margin: 38px 0;
    color: var(--vht-text);
    font-family: Arial, sans-serif;
}

.vht-price-category + .vht-price-category {
    margin-top: 34px;
}

.vht-service-catalog {
    --vht-orange: rgb(243, 146, 0);
    --vht-blue: rgb(15, 112, 183);
    --vht-border: #dbe4ec;
    margin: 32px 0;
    font-family: Arial, sans-serif;
}

.vht-service-category + .vht-service-category {
    margin-top: 34px;
}

.vht-service-category-title {
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 5px solid var(--vht-orange);
    color: var(--vht-blue);
    font-size: clamp(21px, 2.6vw, 30px);
    line-height: 1.25;
}

.vht-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vht-service-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    min-height: 74px;
    padding: 14px;
    border: 1px solid var(--vht-border);
    border-radius: 14px;
    background: #fff;
    color: #243444;
    box-shadow: 0 8px 24px rgba(15, 112, 183, 0.07);
    text-decoration: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vht-service-card:hover,
.vht-service-card:focus {
    border-color: var(--vht-orange);
    color: var(--vht-blue);
    box-shadow: 0 12px 30px rgba(15, 112, 183, 0.13);
    transform: translateY(-2px);
}

.vht-service-card-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 146, 0, 0.14);
    color: var(--vht-orange);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.vht-service-card-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.vht-service-card-arrow {
    color: var(--vht-blue);
    font-size: 21px;
    text-align: right;
}

.vht-price-title {
    margin: 0 0 18px;
    color: #ff6600; /* Culoarea portocalie a brandului */
    font-size: clamp(20px, 2.5vw, 28px); /* Dimensiune responsive adaptată la ecran */
    line-height: 1.2;
    text-align: center; /* Centrează titlul deasupra tabelului */
    font-weight: 700; /* Accentuează titlul pentru contrast vizual */
}

.vht-price-table-wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    overflow: visible;
    border: 1px solid var(--vht-border);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 112, 183, 0.08);
}

.vht-price-table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.vht-price-table .vht-col-service {
    width: 72%;
}

.vht-price-table .vht-col-cost {
    width: 28%;
}

.vht-price-table th,
.vht-price-table td {
    padding: 12px 14px;
    border: 0;
    border-right: 1px solid var(--vht-border);
    border-bottom: 1px solid var(--vht-border);
    vertical-align: middle;
    overflow-wrap: break-word;
}

.vht-price-table tr > *:last-child {
    border-right: 0;
}

.vht-price-table tbody tr:last-child td {
    border-bottom: 0;
}

.vht-price-table thead th {
    background: var(--vht-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: left;
}

.vht-price-table thead th:first-child {
    border-radius: 13px 0 0;
}

.vht-price-table thead th:last-child {
    border-radius: 0 13px 0 0;
}

.vht-price-table .vht-price-group th {
    padding: 11px 14px;
    background: var(--vht-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    text-transform: uppercase;
}

.vht-price-table .vht-price-row:nth-child(odd) td {
    background: rgba(15, 112, 183, 0.035);
}

.vht-price-table .vht-price-row:hover td {
    background: rgba(243, 146, 0, 0.08);
}

.vht-price-table .vht-price-row td:last-child {
    color: var(--vht-blue);
    font-weight: 700;
}

.vht-price-note {
    width: 100%;
    max-width: 1080px; /* Restricționează lățimea la fel ca tabelul */
    margin: 16px auto 0; /* Centrează blocul pe mijlocul paginii */
    color: #667788;
    font-size: 13px;
    line-height: 1.5;
    text-align: center; /* Centrează textul în interiorul blocului */
    box-sizing: border-box;
    padding: 0 10px;
}
@media (max-width: 768px) {
    .vht-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .vht-service-card {
        grid-template-columns: 32px minmax(0, 1fr) 18px;
        min-height: 66px;
        padding: 10px;
    }

    .vht-service-card-icon {
        width: 26px;
        height: 26px;
        font-size: 19px;
    }

    .vht-service-card-name {
        font-size: 12px;
    }

    .vht-price-section {
        margin: 28px 0;
    }

    .vht-price-table .vht-col-service {
        width: 65%;
    }

    .vht-price-table .vht-col-cost {
        width: 35%;
    }

    .vht-price-table th,
    .vht-price-table td {
        padding: 9px 7px;
        font-size: 12px;
        line-height: 1.35;
    }

    .vht-price-table thead th {
        font-size: 12px;
    }

    .vht-price-table .vht-price-group th {
        padding: 9px 7px;
        font-size: 12px;
        text-align: center;
    }

    .vht-price-note {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .vht-service-grid {
        grid-template-columns: 1fr;
    }

    .vht-price-table .vht-col-service {
        width: 62%;
    }

    .vht-price-table .vht-col-cost {
        width: 38%;
    }

    .vht-price-table th,
    .vht-price-table td {
        padding: 8px 5px;
        font-size: 11.5px;
    }
}
