/****************************** ------ Home - Services Section ------ *******************************/

    /* Bordered table-style list */
    .service-table {
        display: grid;
        grid-template-columns: 1fr;
        border: 2px solid #FD4A18;
        border-radius: 8px;
        overflow: hidden;
        margin-top: 15px;
        background: #fff;
    }

    .service-item {
        padding: 12px 15px;
        border-bottom: 1px solid #FD4A18;
        font-size: 14px;
        transition: background 0.3s, color 0.3s;
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .service-item:hover {
        background: #FD4A18;
        color: #fff;
        cursor: pointer;
    }


@media (max-width: 767px) {
    .top-address {
        display: none !important;
    }
}