.its-featured-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.its-service-item {
    display: block;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-bottom: 0;
    transition: background-color 0.3s ease;
    position: relative;
}

.its-service-item:last-child {
    border-bottom: 1px solid #ffffff;
}

.its-service-item:hover {
    background-color: #145030;
}

.its-service-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.its-service-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
