.service-item {
    background: #111;
    color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: #1a1a1a;
}

.service-more {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

/* когда открыт */
.service-item.active .service-more {
    height: auto;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-family: inherit;
    background: #1A1A1A;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-table thead {
    background: #1A1A1A;
    /*background: #111827;*/
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.service-table th,
.service-table td {
    padding: 18px 20px;
    text-align: left;
}

.service-table tbody tr {
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.service-table tbody tr:hover {
    background: #111111;
    transform: scale(1.01);
    color: #EE4818;
}

.service-table td:last-child {
    font-weight: 600;
    color: #ffffff;
}


.service-table tbody tr:last-child {
    border-bottom: none;
}
